Kill comment

This commit is contained in:
greg 2018-05-04 00:20:13 -07:00
parent 73c3eeb69d
commit 00e68d09c7
1 changed files with 0 additions and 9 deletions

View File

@ -68,15 +68,6 @@ pub fn derive_programming_language_interface(input: TokenStream) -> TokenStream
fn get_stages(&self) -> Vec<String> { //TODO rename to passes
vec![ #(#pass_names.to_string()),* ]
/*
vec![
format!("tokenizing_stage"),
format!("parsing_stage"), //TODO handle both types of this
format!("symbol_table_stage"),
format!("typechecking_stage"),
format!("eval_stage")
]
*/
}
}
};