diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-05-26 10:08:50 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-05-27 15:33:38 -0400 |
commit | 8bd1faf2f33e455831b80df4493195848fd03b99 (patch) | |
tree | b8ef070f1d4b1905524e4664f0c567afd0fab97f /src/ext_depends/D-YAML/source/dyaml/parser.d | |
parent | housekeeping (diff) |
sub dependency update, updates D-YAML
Diffstat (limited to 'src/ext_depends/D-YAML/source/dyaml/parser.d')
-rw-r--r-- | src/ext_depends/D-YAML/source/dyaml/parser.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext_depends/D-YAML/source/dyaml/parser.d b/src/ext_depends/D-YAML/source/dyaml/parser.d index 7e0b78a..befdfa4 100644 --- a/src/ext_depends/D-YAML/source/dyaml/parser.d +++ b/src/ext_depends/D-YAML/source/dyaml/parser.d @@ -25,7 +25,6 @@ import dyaml.token; import dyaml.tagdirective; -package: /** * The following YAML grammar is LL(1) and is parsed by a recursive descent * parser. @@ -99,6 +98,7 @@ class ParserException : MarkedYAMLException mixin MarkedExceptionCtors; } +package: /// Generates events from tokens provided by a Scanner. /// /// While Parser receives tokens with non-const character slices, the events it |