aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Print identifiers in test dataAleksey Kladov2018-01-2827-188/+200
|
* Parse enumsAleksey Kladov2018-01-287-1/+194
|
* Merge #29bors[bot]2018-01-288-74/+415
|\ | | | | | | | | | | 29: Structs r=matklad a=matklad r? @CAD97
| * Test for error recovery for broken parametersAleksey Kladov2018-01-282-0/+47
| |
| * Generic params in structsAleksey Kladov2018-01-286-3/+294
| |
| * Move struct parsing to a separate moduleAleksey Kladov2018-01-282-83/+86
|/
* Merge #30bors[bot]2018-01-284-0/+96
|\ | | | | | | | | | | 30: Skip over balanced parens r=matklad a=matklad
| * Skip over balanced parensAleksey Kladov2018-01-284-0/+96
|/
* Merge #28bors[bot]2018-01-284-16/+13
|\ | | | | | | | | | | 28: Don't return SyntaxKind from bump r=matklad a=matklad
| * Don't return SyntaxKind from bumpAleksey Kladov2018-01-284-16/+13
|/
* Merge #25bors[bot]2018-01-284-74/+30
|\ | | | | | | | | | | 25: Drop curly_block r=matklad a=matklad closes #13
| * Rename raw_lookahead -> nthAleksey Kladov2018-01-284-8/+8
| |
| * SimplifyAleksey Kladov2018-01-282-28/+5
| |
| * Drop curly_blockAleksey Kladov2018-01-282-42/+21
|/ | | | closes #13
* Merge #24bors[bot]2018-01-283-1/+35
|\ | | | | | | | | | | 24: Block Comments r=matklad a=CAD97 closes #7
| * Update comments.rsChristopher Durham2018-01-281-1/+1
| |
| * Block CommentsChristopher Durham2018-01-283-1/+35
| | | | | | | | closes #7
* | Merge #23bors[bot]2018-01-284-4/+44
|\ \ | | | | | | | | | | | | | | | 23: Simplify item parsing r=matklad a=matklad
| * | Add recovery testAleksey Kladov2018-01-282-0/+37
| | |
| * | Simplify item parsingAleksey Kladov2018-01-282-4/+7
|/ /
* | Let bors to cleanup branchesAleksey Kladov2018-01-281-0/+1
| |
* | Merge #22bors[bot]2018-01-281-1/+1
|\ \ | |/ |/| | | | | | | 22: Try to fix spurious download errors on appveyor r=matklad a=matklad
| * Try to fix spurious download errors on appveyorAleksey Kladov2018-01-281-1/+1
|/
* Merge #21bors[bot]2018-01-281-1/+0
|\ | | | | | | | | | | 21: Apply #20 to generating code r=CAD97 a=CAD97
| * Update gen.rsChristopher Durham2018-01-281-1/+0
|/
* Merge #20bors[bot]2018-01-281-1/+0
|\ | | | | | | | | | | | | 20: Drop `repr(u32)` from SyntaxKind r=CAD97 a=matklad Nomicon says it disables some optimizations: https://doc.rust-lang.org/beta/nomicon/other-reprs.html#repru-repri
| * Drop `repr(u32)` from SyntaxKindAleksey Kladov2018-01-281-1/+0
|/ | | | | Nomicon says it disables some optimizations: https://doc.rust-lang.org/beta/nomicon/other-reprs.html#repru-repri
* Merge #18bors[bot]2018-01-283-4/+59
|\ | | | | | | | | | | 18: Comments r=matklad a=matklad
| * Document events a bitAleksey Kladov2018-01-281-1/+0
| |
| * Document events a bitAleksey Kladov2018-01-281-0/+48
| |
| * Explain TOMBSTONE and EOFAleksey Kladov2018-01-282-4/+12
| |
* | Merge #17bors[bot]2018-01-283-7/+14
|\ \ | |/ |/| | | | | | | 17: Document the design of `FileBuilder` r=matklad a=matklad
| * Document the design of `FileBuilder`Aleksey Kladov2018-01-283-7/+14
| |
* | Merge #16bors[bot]2018-01-287-243/+243
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 16: Proof-of-concept SyntaxKind as enum r=matklad a=CAD97 This was the one bit about the original RFC I was most confused about. Why isn't `SyntaxKind` a normal `enum`? If it's to signify that it's non-exhaustive [`#[non_exhaustive]`](https://github.com/rust-lang/rust/issues/44109) should be used. (Or `#[doc(hidden)] __Nonexhaustive` on stable.) If it's so that more variants can be added externally, why? There's no need for that, that I can foresee. If it's to expose the `SyntaxKind` type but not any of its instances, why? This is the only actual benefit I can see of this pseudo-enum style. This diff is meant to be as non-invasive as possible, and as such reexports all symbols as they existed prior to this. It's diffed on top of the assumed-good-to-merge #15 to avoid the conflict between them. Diff without #15: <https://github.com/matklad/libsyntax2/pull/16/commits/4244948c6b1a62bd0e1ef276d1f0cc22c36f6f66> Just `src/syntax_kinds.rs`: <https://github.com/matklad/libsyntax2/pull/16/commits/4244948c6b1a62bd0e1ef276d1f0cc22c36f6f66#diff-8f0d69eb4fe0148851505f787b6fd3bb>
| * Convert SyntaxKind to an enumChristopher Durham2018-01-287-243/+243
| |
* | Merge #15bors[bot]2018-01-286-3/+60
|\| | | | | | | | | | | | | | | 15: Add minimal docs to most public symbols r=matklad a=CAD97 Also sticks a safety on some warnings that rustc provides. If you're just stubbing out a module and don't want rustc refusing to compile it because you haven't documented it yet, stick `#![allow(missing_docs)]` at the top.
| * Add minimal docs to most public symbolsChristopher Durham2018-01-286-3/+60
|/
* Merge #14bors[bot]2018-01-281-2/+17
|\ | | | | | | | | | | 14: Normalize test newlines r=matklad a=CAD97 Tests pass with CRLF newlines now
| * Normalize test newlinesChristopher Durham2018-01-281-2/+17
| | | | | | | | Tests pass with CRLF newlines now
* | The last of the MastersAleksey Kladov2018-01-283-0/+16
| |
* | Add appveyor badgeAleksey Kladov2018-01-281-0/+3
| |
* | Fix typoAleksey Kladov2018-01-281-1/+1
| |
* | CI: add windows testingAleksey Kladov2018-01-281-0/+13
|/
* Merge pull request #12 from CAD97/enforce-fmtChristopher Durham2018-01-2726-259/+283
|\ | | | | Enforce rustfmt format
| * Be explicit for Travis' sakeChristopher Durham2018-01-271-4/+4
| |
| * Enforce rustfmt formatChristopher Durham2018-01-271-1/+1
| |
| * Enforce rustfmt formatChristopher Durham2018-01-2726-256/+280
|/
* Add tests for parser recovery in fieldsAleksey Kladov2018-01-272-0/+61
|
* Drop high-order stuff for goodAleksey Kladov2018-01-272-40/+0
|
* SimplifyAleksey Kladov2018-01-271-6/+15
|