diff options
author | John Hodge <tpg@mutabah.net> | 2016-08-31 15:10:46 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-08-31 15:10:46 +0800 |
commit | 4455197bebd63090768c9eee8f53cf225e44b64e (patch) | |
tree | 9429ffd3b931661d53fa906b060137a66914848f /src/ast/ast.hpp | |
parent | 86bbb1aff4b4375e45b5fb04e586f81ff98edb95 (diff) | |
download | mrust-4455197bebd63090768c9eee8f53cf225e44b64e.tar.gz |
Resolve - Hack in support for multiple bindings for one use
Diffstat (limited to 'src/ast/ast.hpp')
-rw-r--r-- | src/ast/ast.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp index 9cf9b236..1e0466a3 100644 --- a/src/ast/ast.hpp +++ b/src/ast/ast.hpp @@ -421,8 +421,9 @@ private: struct UseStmt
{
Span sp;
- ::AST::Path path;
::AST::MetaItems attrs;
+ ::AST::Path path;
+ ::AST::PathBinding alt_binding;
UseStmt()
{}
|