Even more review changes

This commit is contained in:
Sunjay Varma 2018-05-14 11:21:20 -07:00
parent d9a22957a9
commit 71a66d2d7c
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ extend.
Chalk is designed to be incorporated with the Rust compiler, so the syntax and Chalk is designed to be incorporated with the Rust compiler, so the syntax and
concepts it deals with heavily borrow from Rust. It is convenient for the sake concepts it deals with heavily borrow from Rust. It is convenient for the sake
of testing to be able to run chalk on its own, so chalk includes a parser for a of testing to be able to run chalk on its own, so chalk includes a parser for a
Rust-like syntax. Rust-like syntax. This syntax is orthogonal to the Rust AST and grammar. It is
not intended to look exactly like it or support the exact same syntax.
The parser takes that syntax and produces an [Abstract Syntax Tree (AST)][ast]. The parser takes that syntax and produces an [Abstract Syntax Tree (AST)][ast].
You can find the [complete definition of the AST][chalk-ast] in the source code. You can find the [complete definition of the AST][chalk-ast] in the source code.