We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a45068c commit 775b64cCopy full SHA for 775b64c
src/comp/rustc.rc
@@ -63,7 +63,6 @@ mod syntax {
63
mod base;
64
mod expand;
65
66
- mod fmt;
67
mod ifmt;
68
mod env;
69
mod simplext;
src/comp/syntax/ext/base.rs
@@ -22,7 +22,6 @@ tag syntax_extension {
22
// AST nodes into full ASTs
23
fn syntax_expander_table() -> hashmap<istr, syntax_extension> {
24
let syntax_expanders = new_str_hash::<syntax_extension>();
25
- syntax_expanders.insert(~"fmt", normal(ext::fmt::expand_syntax_ext));
26
syntax_expanders.insert(~"ifmt", normal(ext::ifmt::expand_syntax_ext));
27
syntax_expanders.insert(~"env", normal(ext::env::expand_syntax_ext));
28
syntax_expanders.insert(~"macro",
src/comp/syntax/ext/fmt.rs
0 commit comments