forked from MightyPork/crsn
fix branch parser eating all list tokens
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
use crsn::asm::data::{Rd, RdObj, Wr};
|
||||
use crsn::asm::data::literal::Value;
|
||||
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
pub enum BufValue {
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
use std::collections::{HashMap, VecDeque};
|
||||
|
||||
use crsn::asm::data::{Rd, RdObj, Wr};
|
||||
use crsn::asm::data::literal::Value;
|
||||
use crsn::asm::instr::Cond;
|
||||
use crsn::module::{EvalRes, OpTrait};
|
||||
|
||||
@@ -6,7 +6,6 @@ use crsn::sexp::{SourcePosition, Sexp, Atom};
|
||||
|
||||
use crate::defs::{BufOps, BufValue};
|
||||
use crsn::asm::data::Rd;
|
||||
use crsn::sexp;
|
||||
use crsn::asm::parse::parse_data::parse_rd;
|
||||
|
||||
pub(crate) fn parse<'a>(_pos: &SourcePosition, keyword: &str, mut args: TokenParser<'a>) -> Result<ParseRes<'a, OpKind>, CrsnError> {
|
||||
|
||||
Reference in New Issue
Block a user