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
While fixing #526, I found that token.Incr and token.Decr are used in lexer.go while increment/decrement operators are unused.
token.Incr
token.Decr
// compiler/token/token.go Incr = "++" Decr = "--"
I'd like to remove them when fixing #526. If @st0012 has any plan to use them, please let me know.
The text was updated successfully, but these errors were encountered:
@hachi8833 They will not be used again, plz drop them, thx
Sorry, something went wrong.
Merge branch 'master' into fix-#554
1087288
hachi8833
Successfully merging a pull request may close this issue.
While fixing #526, I found that
token.Incr
andtoken.Decr
are used in lexer.go while increment/decrement operators are unused.I'd like to remove them when fixing #526. If @st0012 has any plan to use them, please let me know.
The text was updated successfully, but these errors were encountered: