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
>
Thanks for the project! I'm getting a bug using the tokenizer and it not handling > properly.
I'm trying to parse child combinators like:
const src = """ Button > directChild { } Button > directChild.field { } """ let tokenizer = newTokenizer(src) while not tokenizer.isEof(): echo repr tokenizer.nextToken()
This just prints Token(kind: tkIdent, ident: ">") forever.
Token(kind: tkIdent, ident: ">")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for the project! I'm getting a bug using the tokenizer and it not handling
>
properly.I'm trying to parse child combinators like:
This just prints
Token(kind: tkIdent, ident: ">")
forever.The text was updated successfully, but these errors were encountered: