Move validation to issues

This commit is contained in:
Aleksey Kladov 2018-01-10 23:04:20 +03:00
parent ea5b67fdb0
commit e9dd8aae22
3 changed files with 1 additions and 15 deletions

View file

@ -4,7 +4,7 @@
libsyntax2.0 is an **experimental** implementation of the corresponding [RFC](https://github.com/rust-lang/rfcs/pull/2256).
See `docs` folder for more details.
See `docs` folder for more details and contribution instructions.

View file

@ -1,14 +0,0 @@
Fixmes:
Lexer:
* Fix `is_whitespace`, add more tests
* Add more thorough tests for idents for XID_Start & XID_Continue
* Validate that float and integer literals use digits only of the appropriate
base, and are in range
* Validation for unclosed char literal
* Strings are completely wrong: more tests and comparison with libsyntax.
* Comment lexing is completely wrong
Parser:
* Figure out what is the expected state of attribute grammar.
Token trees or something more structured? Token trees would be unfortunate: no extend selection =/