diff options
| author | Keegan McAllister <kmcallister@mozilla.com> | 2015-01-02 12:50:45 -0800 |
|---|---|---|
| committer | Keegan McAllister <kmcallister@mozilla.com> | 2015-01-05 18:21:13 -0800 |
| commit | aa69cbde8279cd90457454c3b3f40a36e8a79dff (patch) | |
| tree | 6fadc77e821fb42ff743b355a5432180848e1a30 /src/libsyntax/ast.rs | |
| parent | 0816255c80ee3f2a8870ee5e4379e3739d8ed72e (diff) | |
| download | rust-aa69cbde8279cd90457454c3b3f40a36e8a79dff.tar.gz rust-aa69cbde8279cd90457454c3b3f40a36e8a79dff.zip | |
Allow selective macro import
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 1 |
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>, } |
