parser/refactor def (#2986)

* Move tests into own file

* Move data structs to own file

* Move functions parsing 1 Token (primitives) into own file

* Rename param_flag_list to signature

* Add tests

* Fix clippy lint

* Change imports to new lexer structure
This commit is contained in:
Leonhard Kipp
2021-02-07 20:10:14 +01:00
committed by GitHub
parent debeadbf3f
commit ef4e3f907c
7 changed files with 1099 additions and 1086 deletions

View File

@ -1,5 +1,7 @@
#[macro_use]
extern crate derive_is_enum_variant;
#[macro_use]
extern crate derive_new;
mod errors;
mod lex;