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
++iとi++の扱い方法として:
++i
i++
マッパーを生成する時に、ParseRuleが preIncrementExpression preDecrementExpression unaryExpressionNotPlusMinus であれば、operatorの前に"_"をつけて、 postIncrementExpression postDecrementExpression であれば、operatorの後ろに"_"をつける。
ParseRule
preIncrementExpression
preDecrementExpression
unaryExpressionNotPlusMinus
operator
"_"
postIncrementExpression
postDecrementExpression
(そうすれば、Generatorがoperatorを読む時に、"_"の位置によってプリントする順番を決められる)
Generator
タスクとして、"_"のつけるのをUniMapperGeneratorで自動的に生成できるようにしたい。
preIncrementExpression => UniUnaryOp : INC$operator unaryExpression$expr ; preDecrementExpression => UniUnaryOp : DEC$operator unaryExpression$expr ; unaryExpressionNotPlusMinus => UniUnaryOp : postfixExpression$RETURN | TILDE$operator unaryExpression$expr | BANG$operator unaryExpression$expr | castExpression ; postfixExpression => UniUnaryOp : ( primary$RETURN | expressionName$RETURN ) ( postIncrementExpression_lf_postfixExpression | postDecrementExpression_lf_postfixExpression )* ; postIncrementExpression => UniUnaryOp : postfixExpression$expr INC$operator ; postDecrementExpression=>UniUnaryOp : postfixExpression$expr DEC$operator ;
The text was updated successfully, but these errors were encountered:
UniUnaryOpにフィールドを追加して,順序無関係,前置,後置を表現するようにする.
Sorry, something went wrong.
No branches or pull requests
++i
とi++
の扱い方法として:マッパーを生成する時に、
ParseRule
がpreIncrementExpression
preDecrementExpression
unaryExpressionNotPlusMinus
であれば、
operator
の前に"_"
をつけて、postIncrementExpression
postDecrementExpression
であれば、
operator
の後ろに"_"
をつける。(そうすれば、
Generator
がoperator
を読む時に、"_"
の位置によってプリントする順番を決められる)タスクとして、
"_"
のつけるのをUniMapperGeneratorで自動的に生成できるようにしたい。The text was updated successfully, but these errors were encountered: