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
CatspeakEnvironment
More control over how Catspeak is consumed at a top-level through the convenience of CatspeakEnvironment.
Custom methods or public fields on CatspeakEnvironment to change the lexer, parser, and environment. Might look something like:
Catspeak.lexer = GMLLexer; Catspeak.parser = GMLParser;
Then calling Catspeak.parseString will tokenise the string using GMLLexer and then pass those tokens on to GMLParser to consume.
Catspeak.parseString
GMLLexer
GMLParser
The text was updated successfully, but these errors were encountered:
xor
katsaii
Successfully merging a pull request may close this issue.
What is your feature request?
More control over how Catspeak is consumed at a top-level through the convenience of
CatspeakEnvironment
.Please describe in detail how you expect this new feature to behave.
Custom methods or public fields on
CatspeakEnvironment
to change the lexer, parser, and environment. Might look something like:Then calling
Catspeak.parseString
will tokenise the string usingGMLLexer
and then pass those tokens on toGMLParser
to consume.The text was updated successfully, but these errors were encountered: