| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-08-12 | Rename ra_syntax -> syntax | Aleksey Kladov | -1/+1 | |
| 2020-08-01 | Update grammar | Aleksey Kladov | -6/+5 | |
| 2020-07-31 | Simplify trait gramamr | Aleksey Kladov | -0/+2 | |
| 2020-07-31 | Specify literal tokens | Aleksey Kladov | -0/+1 | |
| 2020-07-31 | Rename LambdaExpr -> ClosureExpr | Aleksey Kladov | -1/+13 | |
| 2020-07-31 | Work on expressions grammar | Aleksey Kladov | -0/+3 | |
| 2020-07-31 | Item is a Stmt | Aleksey Kladov | -0/+3 | |
| 2020-07-31 | Handwrite Stmt | Aleksey Kladov | -25/+26 | |
| 2020-07-31 | Rename TypeRef -> Type | Aleksey Kladov | -1/+7 | |
| The TypeRef name comes from IntelliJ days, where you often have both type *syntax* as well as *semantical* representation of types in scope. And naming both Type is confusing. In rust-analyzer however, we use ast types as `ast::Type`, and have many more semantic counterparts to ast types, so avoiding name clash here is just confusing. | ||||
| 2020-07-30 | Remove TypeAscriptionOwner | Aleksey Kladov | -1/+0 | |
| 2020-07-30 | Rename StructDef -> Struct | Aleksey Kladov | -1/+1 | |
| 2020-07-30 | Simplify | Aleksey Kladov | -34/+24 | |
| 2020-07-30 | Simplify codegen | Aleksey Kladov | -21/+21 | |
| 2020-07-30 | Rename TypeParamList -> GenericParamList | Aleksey Kladov | -1/+1 | |
| 2020-07-30 | Rename FnDef -> Fn | Aleksey Kladov | -5/+2 | |
| 2020-07-30 | Add comma list to use tree | Aleksey Kladov | -0/+35 | |
| 2020-07-30 | Finish SourceFile grammar | Aleksey Kladov | -1/+1 | |
| 2020-07-29 | Switch to ungrammar from ast_src | Aleksey Kladov | -4/+220 | |
| The primary advantage of ungrammar is that it (eventually) allows one to describe concrete syntax tree structure -- with alternatives and specific sequence of tokens & nodes. That should be re-usable for: * generate `make` calls * Rust reference * Hypothetical parser's evented API We loose doc comments for the time being unfortunately. I don't think we should add support for doc comments to ungrammar -- they'll make grammar file hard to read. We might supply docs as out-of band info, or maybe just via a reference, but we'll think about that once things are no longer in flux | ||||
| 2020-07-29 | Owned AST IR | Aleksey Kladov | -14/+15 | |
| 2020-06-12 | Merge #4855 | bors[bot] | -2/+2 | |
| 4855: Use more idiomatic style for lifetimes in generated code r=matklad a=Veetaha Co-authored-by: Veetaha <veetaha2@gmail.com> | ||||
| 2020-06-12 | Simplify | Veetaha | -1/+1 | |
| 2020-06-12 | Use more idiomatic style for lifetimes in generated code | Veetaha | -2/+2 | |
| 2020-05-10 | Add ast docs to codegen script | veetaha | -2/+23 | |
| 2020-05-02 | Introduce EffectExpr | Aleksey Kladov | -0/+1 | |
| 2020-04-18 | Group generated ast boilerplate apart from the interesting part | veetaha | -120/+130 | |
| 2020-04-10 | Rename some tokens | Aleksey Kladov | -4/+4 | |
| 2020-04-10 | Better readability | Aleksey Kladov | -2/+3 | |
| 2020-04-10 | Remove dead code | Aleksey Kladov | -11/+4 | |
| 2020-04-10 | Generate only minimal set of ineresting tokens | Aleksey Kladov | -0/+35 | |
| 2020-04-10 | Scale token generation back | Aleksey Kladov | -163/+19 | |
| 2020-04-10 | Convert more tokens | Aleksey Kladov | -0/+2 | |
| 2020-04-10 | Other delimiters | Aleksey Kladov | -0/+4 | |
| 2020-04-10 | Start replacing tokens | Aleksey Kladov | -0/+4 | |
| 2020-04-10 | Semicolon token | Aleksey Kladov | -2/+8 | |
| 2020-04-10 | More readable ast_src for keywords | Aleksey Kladov | -34/+56 | |
| 2020-04-09 | Simpler acessors for keywords | Aleksey Kladov | -8/+25 | |
| 2020-04-09 | Add _token suffix to token accessors | Aleksey Kladov | -0/+1 | |
| I think this makes is more clear which things are : AstNode and which are : AstToken | ||||
| 2020-04-09 | Put displays at the end | Aleksey Kladov | -12/+16 | |
| 2020-04-09 | More compact | Aleksey Kladov | -10/+2 | |
| 2020-04-09 | Move the rest of the tokens to generated/tokens | Aleksey Kladov | -80/+90 | |
| 2020-04-09 | Move generated tokens to a separate file | Aleksey Kladov | -37/+61 | |
| 2020-04-09 | Start ast/generated/tokens | Aleksey Kladov | -3/+7 | |
| 2020-04-09 | Prepare for spliting generated into tokens and nodes | Aleksey Kladov | -1/+1 | |
| 2020-04-09 | Cleanup import | Aleksey Kladov | -2/+5 | |
| 2020-04-09 | Scale back to only two traits | Aleksey Kladov | -29/+58 | |
| 2020-04-09 | Scale back the traits | Aleksey Kladov | -140/+28 | |
| 2020-04-08 | Add AstElement trait, generate tokens, support tokens in enums | Luca Barbieri | -29/+269 | |
| - Adds a new AstElement trait that is implemented by all generated node, token and enum structs - Overhauls the code generators to code-generate all tokens, and also enhances enums to support including tokens, node, and nested enums | ||||
| 2020-03-11 | implementing Display for enums too. | Fireassember | -2/+8 | |
| 2020-03-06 | added fmt::Display as a supertrait for AstNode and changed generation. | Fireassember | -0/+6 | |
| 2020-01-16 | fix(xtask.gen_syntax.typo): add s to the verb that refers to the 3d person | Veetaha | -1/+1 | |
