summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2015-01-02 12:50:45 -0800
committerKeegan McAllister <kmcallister@mozilla.com>2015-01-05 18:21:13 -0800
commitaa69cbde8279cd90457454c3b3f40a36e8a79dff (patch)
tree6fadc77e821fb42ff743b355a5432180848e1a30 /src/libsyntax/ast.rs
parent0816255c80ee3f2a8870ee5e4379e3739d8ed72e (diff)
downloadrust-aa69cbde8279cd90457454c3b3f40a36e8a79dff.tar.gz
rust-aa69cbde8279cd90457454c3b3f40a36e8a79dff.zip
Allow selective macro import
Diffstat (limited to 'src/libsyntax/ast.rs')
-rw-r--r--src/libsyntax/ast.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index e34060a73c1..0f90e31c17e 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -1709,6 +1709,7 @@ pub struct MacroDef {
     pub span: Span,
     pub imported_from: Option<Ident>,
     pub export: bool,
+    pub use_locally: bool,
     pub body: Vec<TokenTree>,
 }