diff options
author | John Hodge <tpg@mutabah.net> | 2016-03-15 21:32:48 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-03-15 21:32:48 +0800 |
commit | 124cf9fc5fb6c0b7f70ef94382efd5190019edac (patch) | |
tree | 3e2b3e42e49b51d8ddcb0c52616e201b18b2a23e /src/ast/ast.hpp | |
parent | 9a3987bb1575c4ab1eae9c065e907773fa3dcf17 (diff) | |
download | mrust-124cf9fc5fb6c0b7f70ef94382efd5190019edac.tar.gz |
Expand - More attribute handling
Diffstat (limited to 'src/ast/ast.hpp')
-rw-r--r-- | src/ast/ast.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp index ed6ad07b..c05e7aa4 100644 --- a/src/ast/ast.hpp +++ b/src/ast/ast.hpp @@ -44,6 +44,7 @@ enum eItemType };
typedef Named<TypeRef> StructItem;
+
class Crate;
class TypeAlias:
@@ -321,6 +322,7 @@ class Impl: {
ImplDef m_def;
+ //NamedList<Item> m_items;
NamedList<TypeRef> m_types;
NamedList<Function> m_functions;
NamedList<Static> m_statics;
|