We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By definition, a parser takes a text - or character stream - as input, and returns a structured object.
parser
character stream
input
The stream will describe how the input is eaten by the parser. We should void the source word to avoid confusion.
stream
source
In ParserStream, the parser is named as source which can lead to more confusion. In BufferedStream, the source is the lowerStream
ParserStream
BufferedStream
The text was updated successfully, but these errors were encountered:
No branches or pull requests
By definition, a
parser
takes a text - orcharacter stream
- asinput
, and returns a structured object.The
stream
will describe how theinput
is eaten by theparser
. We should void thesource
word to avoid confusion.In
ParserStream
, the parser is named assource
which can lead to more confusion. InBufferedStream
, the source is the lowerStreamThe text was updated successfully, but these errors were encountered: