summaryrefslogtreecommitdiff
path: root/src/ast/ast.cpp
AgeCommit message (Collapse)AuthorFilesLines
2019-11-07AST - Fix compilation error on some clang installs (#118)John Hodge1-0/+7
2019-10-06AST - Clean up location of attributes and span on mod-level itemsJohn Hodge1-36/+32
2019-05-19All - Switch to using interned (de-duplicated) RcString-s instead of ↵John Hodge1-13/+13
std::string for paths/identifiers
2019-05-05parse/expand/resolve - `macro` macros use their own module as the resolve rootJohn Hodge1-0/+3
2019-01-21Parse (partial) - `extern { type Foo; }`, very roughJohn Hodge1-1/+1
2019-01-01Refactor of `use` items to fully-group imports from a single useJohn Hodge1-13/+10
2018-12-28Resolve - Clean up AST path bindings, one binding per namespaceJohn Hodge1-1/+1
- This is prep work for supporting `use` of macros
2018-06-04All - Ensure that all files have a header comment, remove some dead codeJohn Hodge1-11/+6
2018-06-02AST - Remove old serialisation code (now all done on HIR)John Hodge1-1/+0
2018-05-20AST - Refactor lifetime/HRB handlingJohn Hodge1-8/+22
2018-05-20AST - Rename MetaItem and MetaItems to Attribute and AttributeListJohn Hodge1-25/+19
2017-09-10Parse - Store attributes for trait itemsJohn Hodge1-3/+6
2017-05-28AST - Refactor to make unit-like structs their own variantJohn Hodge1-0/+3
2016-12-24No more tears!ubsan1-432/+432
No more DOS line endings or trailing whitespace either
2016-10-31AST+HIR - Union support through to HIRJohn Hodge1-2/+2
2016-10-31All - Rough support for `union` (data structure present in all stages)John Hodge1-0/+11
2016-10-30AST - Inheret module path info in anon modsJohn Hodge1-0/+1
2016-10-30AST - Remove copy construction of TypeRefJohn Hodge1-7/+10
2016-10-23AST - Reduce places where there's no span information providedJohn Hodge1-6/+6
2016-10-09Expand - #[macro_reexport]John Hodge1-0/+3
2016-10-09AST - Remove free MacroInvocation listsJohn Hodge1-1/+4
2016-09-29AST - Store `const`/`unsafe`/variadic on functionsJohn Hodge1-3/+7
2016-09-28AST - Make anon modules `shared_ptr`s to handle case where a block is depetedJohn Hodge1-14/+4
2016-09-27AST - Refactor extern blocks into ItemsJohn Hodge1-1/+1
2016-09-27AST - Stub out extern and impl blocks as Item-sJohn Hodge1-2/+21
2016-09-26Debug - Clearer debug with item insertion and deletionJohn Hodge1-6/+10
2016-09-26AST - Move module-level macro invocations into the Item listJohn Hodge1-0/+3
2016-09-25AST - Convert use statements to normal itemsJohn Hodge1-122/+9
2016-09-25Parse+AST - Support capturing :item (requires cloning AST items)John Hodge1-33/+155
2016-09-25Parse - Split module item parse into a form that is callable from macro_rulesJohn Hodge1-23/+4
2016-08-25AST - Move receiver marking to HIR conversion (post resolution)John Hodge1-41/+0
2016-08-24AST - More defensive `self: Box<Self>` codeJohn Hodge1-0/+3
2016-08-24AST - Hackily support `self: Box` syntaxJohn Hodge1-0/+13
2016-08-23AST - Fix uninitialised receiver typeJohn Hodge1-0/+1
2016-08-22AST+HIR - Save decoded receiver type for methodsJohn Hodge1-0/+32
2016-08-20AST - Remove unused AST serialisation codeJohn Hodge1-221/+1
2016-08-19AST - Macro invocations in item listJohn Hodge1-0/+3
2016-08-01AST - Add specialisable tag to impl itemsJohn Hodge1-34/+6
2016-07-14Macro Rules - Rewrite, take 3 - IncompleteJohn Hodge1-1/+2
2016-06-12Parse - Fix incorrect handling of trailing semicolonsJohn Hodge1-0/+3
2016-05-29AST - Remove dead code, add lifetime params, fix param clobberJohn Hodge1-28/+0
2016-05-25Parse - Use interpolated macro fragments instead of captured TTsJohn Hodge1-1/+10
2016-05-24AST - Move types.cpp to ast/ dirJohn Hodge1-1/+1
2016-05-24AST - Spans, spans everywhere!John Hodge1-1/+1
2016-05-24AST - Spanned paths in impl blocks, remove dead codeJohn Hodge1-167/+12
2016-05-24HIR Lower - Lower impl blocksJohn Hodge1-0/+6
2016-05-22macro_rules - Rework pattern matching to not use try-catchJohn Hodge1-0/+3
2016-05-18Tagged union cleanup hacksJohn Hodge1-1/+1
2016-05-18All - Fix up a bunch of -Wextra warningsJohn Hodge1-0/+9
2016-05-14Remove requirement for all variants of tagged unions to be empty-constructableJohn Hodge1-1/+1