move syntax error to parser

This commit is contained in:
Aleksey Kladov 2019-02-20 23:17:07 +03:00
parent 61992dc1cd
commit 882c47f187
6 changed files with 24 additions and 25 deletions

View file

@ -3,10 +3,9 @@ use std::cell::Cell;
use drop_bomb::DropBomb;
use crate::{
syntax_error::ParseError,
SyntaxKind::{self, ERROR, EOF, TOMBSTONE},
parsing::{
TokenSource,
TokenSource, ParseError,
token_set::TokenSet,
event::Event,
},