1
0
This commit is contained in:
Jeff 2024-10-18 22:30:20 -04:00
parent 19f2d19134
commit 86e055a562
2 changed files with 1 additions and 3 deletions

View File

@ -217,6 +217,4 @@ pub enum LineKind {
Statement,
OpenBlock,
CloseBlock,
Call,
Primary,
}

View File

@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize};
use crate::{
AnnotatedError, Chunk, ChunkError, DustError, FunctionType, Identifier, Instruction, LexError,
Lexer, Local, Operation, Span, Token, TokenKind, TokenOwned, Type, Value,
Lexer, Operation, Span, Token, TokenKind, TokenOwned, Type, Value,
};
pub fn parse(source: &str) -> Result<Chunk, DustError> {