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
为 https://github.com/takumi4ichi/caliburn 项目的分号补全,以及除法TOKEN和正则TOKEN的区分,以及lookheadno(FUNCTION, {)而增加该功能需求。
比如
program -> line; line -> NUMBER ';' | IDENT [noLineTerminator] '++'; ;
可以看出,这个接受以下句子:
123; abc++;
abc是一个IDENT,但是和下一个token_++_之间,出现了[noLineTerminator],所以执行一些特殊的语法动作,来对自动插入分号的需求进行支持。
该功能从 @jsinjs 中学习。 [div] [noLineTerminator] [lookaheadno{{,function}]
The text was updated successfully, but these errors were encountered:
acodercc
No branches or pull requests
为 https://github.com/takumi4ichi/caliburn 项目的分号补全,以及除法TOKEN和正则TOKEN的区分,以及lookheadno(FUNCTION, {)而增加该功能需求。
比如
可以看出,这个接受以下句子:
abc是一个IDENT,但是和下一个token_++_之间,出现了[noLineTerminator],所以执行一些特殊的语法动作,来对自动插入分号的需求进行支持。
该功能从 @jsinjs 中学习。
[div]
[noLineTerminator]
[lookaheadno{{,function}]
The text was updated successfully, but these errors were encountered: