diff options
author | Greg Brown <gmb60@cam.ac.uk> | 2021-01-06 14:56:11 +0000 |
---|---|---|
committer | Greg Brown <gmb60@cam.ac.uk> | 2021-01-06 14:56:11 +0000 |
commit | dc10a278cca74d737e4af0fe034a1caa8abb291d (patch) | |
tree | 3fbb9efc0bdc9fd3bc24d2ad743585071b7006a4 /src/lib.rs | |
parent | 4fb6b740e79c1942fd0bfde9b167ea273c7d0b4b (diff) |
Restructure code base to separate compilation phases.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -23,5 +23,6 @@ #![warn(unused_qualifications)] #![warn(variant_size_differences)] +pub mod chomp; +pub mod lower; pub mod nibble; -pub mod ast; |