Use a proc macro to declare preallocated symbols

This commit is contained in:
John Kåre Alsaker 2019-04-03 02:43:49 +02:00
parent a55f6be428
commit 10855a36b5
9 changed files with 312 additions and 139 deletions

View file

@ -16,6 +16,7 @@
#![feature(non_exhaustive)]
#![feature(optin_builtin_traits)]
#![feature(rustc_attrs)]
#![feature(proc_macro_hygiene)]
#![feature(specialization)]
#![feature(step_trait)]
@ -32,6 +33,7 @@ mod span_encoding;
pub use span_encoding::{Span, DUMMY_SP};
pub mod symbol;
pub use symbol::symbols;
mod analyze_source_file;