Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Split string lexing and run rustfmt | Adolfo Ochagavía | 2018-11-11 | 10 | -521/+548 |
| | |||||
* | Validate byte string literals | Adolfo Ochagavía | 2018-11-11 | 8 | -24/+305 |
| | |||||
* | Add validator for byte | Adolfo Ochagavía | 2018-11-11 | 8 | -90/+416 |
| | |||||
* | Validate string literals | Adolfo Ochagavía | 2018-11-09 | 9 | -274/+621 |
| | |||||
* | Complete paths in use trees | Aleksey Kladov | 2018-11-07 | 1 | -0/+9 |
| | |||||
* | rename ROOT -> SOURCE_FILE | Aleksey Kladov | 2018-11-07 | 183 | -232/+231 |
| | |||||
* | Rename File -> SourceFileNode | Aleksey Kladov | 2018-11-07 | 5 | -24/+24 |
| | |||||
* | Add some more DocCommentsOwner | Jeremy A. Kolb | 2018-11-07 | 2 | -2/+14 |
| | |||||
* | Merge #207 | bors[bot] | 2018-11-07 | 7 | -13/+234 |
|\ | | | | | | | | | | | | | | | 207: Finish implementing char validation r=aochagavia a=aochagavia The only thing missing right now are good integration tests (and maybe more descriptive error messages) Co-authored-by: Adolfo Ochagavía <[email protected]> | ||||
| * | Fix backslash escape | Adolfo Ochagavía | 2018-11-07 | 1 | -2/+4 |
| | | |||||
| * | Use ArrayString instead of hand rolled data structure | Adolfo Ochagavía | 2018-11-07 | 4 | -39/+5 |
| | | |||||
| * | cargo format | Adolfo Ochagavía | 2018-11-07 | 2 | -30/+39 |
| | | |||||
| * | Add lots of tests | Adolfo Ochagavía | 2018-11-07 | 3 | -6/+125 |
| | | |||||
| * | Store hex digits in a stack-allocated buffer | Adolfo Ochagavía | 2018-11-07 | 2 | -5/+45 |
| | | |||||
| * | Finish implementing char validation | Adolfo Ochagavía | 2018-11-06 | 3 | -8/+93 |
| | | |||||
* | | ra_syntax::File is just RootNode | Aleksey Kladov | 2018-11-06 | 4 | -206/+969 |
| | | |||||
* | | Add a pinch of comments | Aleksey Kladov | 2018-11-06 | 3 | -0/+16 |
| | | |||||
* | | Generalize Owned nodes | Aleksey Kladov | 2018-11-06 | 2 | -1806/+1237 |
| | | |||||
* | | grammar: fix where clause parsing | Aleksey Kladov | 2018-11-06 | 3 | -1/+35 |
| | | | | | | | | closes #205 | ||||
* | | upstream basic tree algorithms to rowan | Aleksey Kladov | 2018-11-06 | 3 | -107/+10 |
|/ | |||||
* | Merge #188 | bors[bot] | 2018-11-05 | 10 | -66/+183 |
|\ | | | | | | | | | | | | | | | | | 188: Introduce `SyntaxErrorKind` and `TextRange` to `SyntaxError` r=matklad a=aochagavia Co-authored-by: Adolfo Ochagavía <[email protected]> Co-authored-by: Adolfo Ochagavía <[email protected]> | ||||
| * | cargo format | Adolfo Ochagavía | 2018-11-05 | 2 | -5/+9 |
| | | |||||
| * | Introduce Location and make SyntaxError fields private | Adolfo Ochagavía | 2018-11-05 | 9 | -50/+72 |
| | | |||||
| * | Introduce SyntaxErrorKind and TextRange in SyntaxError | Adolfo Ochagavía | 2018-11-04 | 9 | -62/+153 |
| | | |||||
* | | bring back testutils | Aleksey Kladov | 2018-11-05 | 1 | -1/+1 |
| | | |||||
* | | add description | Aleksey Kladov | 2018-11-05 | 1 | -1/+3 |
| | | |||||
* | | Switch ra_syntax to 2015 edition | Aleksey Kladov | 2018-11-05 | 2 | -1/+4 |
| | | |||||
* | | reduce code duplication | Aleksey Kladov | 2018-11-05 | 2 | -21/+19 |
| | | |||||
* | | grammar: for predicates in where | Aleksey Kladov | 2018-11-05 | 4 | -35/+129 |
|/ | | | | closes #191 | ||||
* | Add character literal parsing and validation | Adolfo Ochagavía | 2018-11-04 | 6 | -2/+397 |
| | |||||
* | Don't order import alphabetical | Aleksey Kladov | 2018-11-01 | 1 | -1/+1 |
| | | | | | alphabetical ordering is no more consistent, and much less useful then the ordering which arises naturally when you add import. | ||||
* | Use From to get an owned AST | Aleksey Kladov | 2018-11-01 | 2 | -400/+700 |
| | |||||
* | Remove DOC_COMMENT | Jeremy A. Kolb | 2018-10-31 | 4 | -5/+2 |
| | | | | Closes #166 | ||||
* | Reformat all | Aleksey Kladov | 2018-10-31 | 4 | -13/+16 |
| | |||||
* | `ast::DocCommentsOwner` which represents a documentation comment owner | Jeremy A. Kolb | 2018-10-31 | 3 | -0/+20 |
| | |||||
* | Move FnDescriptors to analyzer | Aleksey Kladov | 2018-10-31 | 2 | -100/+100 |
| | |||||
* | Introduce owned ast nodes | Aleksey Kladov | 2018-10-31 | 2 | -2/+1303 |
| | | | | ast::FooNode is an owned 'static counterpart to ast::Foo<'a> | ||||
* | switch to TextRange::subrange | Aleksey Kladov | 2018-10-30 | 2 | -6/+2 |
| | |||||
* | introduce syntax-ptr | Aleksey Kladov | 2018-10-30 | 1 | -0/+1 |
| | |||||
* | Complete crate:: paths | Aleksey Kladov | 2018-10-24 | 3 | -1/+36 |
| | |||||
* | Fix function calls | Alan Du | 2018-10-18 | 3 | -3/+3 |
| | |||||
* | clippy: type_complexity | Alan Du | 2018-10-18 | 1 | -4/+5 |
| | |||||
* | Remove Copy trait on LeafAtOffset | Alan Du | 2018-10-18 | 1 | -1/+1 |
| | | | | | | | Because it's a stateful iterator, it's easier to explicitly clone it when necesary. Fixes clippy:clone_on_copy | ||||
* | clippy: Use if lets and remove redundant returns | Alan Du | 2018-10-18 | 6 | -16/+12 |
| | |||||
* | Update rowan | Aleksey Kladov | 2018-10-17 | 6 | -39/+16 |
| | |||||
* | rename gen-kinds to gen-syntax | Aleksey Kladov | 2018-10-16 | 5 | -5/+5 |
| | |||||
* | Cargo Format | Jeremy A. Kolb | 2018-10-16 | 31 | -391/+490 |
| | | | | Run `cargo fmt` and ignore generated files | ||||
* | start salsa migration | Aleksey Kladov | 2018-10-15 | 1 | -1/+1 |
| | |||||
* | regenerate | Aleksey Kladov | 2018-10-15 | 1 | -1/+1 |
| | |||||
* | Parse crate paths in expressions | Aleksey Kladov | 2018-10-15 | 3 | -1/+45 |
| |