Document lexer (#2865)

* Update dependencies

* Document the lexer and lightly improve its names

The bulk of this pull request adds a substantial amount of new inline
documentation for the lexer. Along the way, I made a few minor changes
to the names in the lexer, most of which were internal.

The main change that affects other files is renaming `group` to `block`,
since the function is actually parsing a block (a list of groups).

* Fix rustfmt

* Update lock

Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
Co-authored-by: Jonathan Turner <jonathan.d.turner@gmail.com>
This commit is contained in:
Yehuda Katz
2021-01-06 19:03:00 -08:00
committed by GitHub
parent eb62fd466e
commit f410fb6689
12 changed files with 262 additions and 121 deletions

View File

@ -17,14 +17,14 @@ bigdecimal = {version = "0.2.0", features = ["serde"]}
codespan-reporting = {version = "0.11.0", features = ["serialization"]}
derive-new = "0.5.8"
getset = "0.1.1"
num-bigint = {version = "0.3.0", features = ["serde"]}
num-traits = "0.2.12"
serde = {version = "1.0.115", features = ["derive"]}
num-bigint = {version = "0.3.1", features = ["serde"]}
num-traits = "0.2.14"
serde = {version = "1.0.118", features = ["derive"]}
# implement conversions
glob = "0.3.0"
serde_json = "1.0.57"
serde_yaml = "0.8.13"
toml = "0.5.6"
serde_json = "1.0.61"
serde_yaml = "0.8.15"
toml = "0.5.8"
[build-dependencies]