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
variableDeclaratorListは、fieldDeclaration, constantDeclarationとlocalVariableDeclarationに使われている。
variableDeclaratorList
fieldDeclaration
constantDeclaration
localVariableDeclaration
fieldDeclaration => List<UniFieldDec> : fieldModifiers$modifiers unannType$type variableDeclaratorList$ADD ';' ; constantDeclaration => List<UniFieldDec> : constantModifiers$modifiers unannType$type variableDeclaratorList$ADD ';' ;
この二つはreturn typeが同じため、ADDで繋げられるが、
localVariableDeclaration => List<UniVariableDec> : variableModifier*$modifiers unannType$type variableDeclaratorList ;
localVariableDeclarationのreturn typeは List<UniVariableDec>のため、ADDが使えなくなる。
List<UniVariableDec>
なので、variableDeclaratorListをfield用とlocal用に分けるのも考えているが、 なるべく元のグラマーファイルをいじらなくて、解決できる方法を探したい。
The text was updated successfully, but these errors were encountered:
右上の鉛筆マークで編集ができるよ。 コードの部分はバッククォーテーションで囲って下さい。<>が表示されていないです。
<>
Sorry, something went wrong.
No branches or pull requests
variableDeclaratorList
は、fieldDeclaration
,constantDeclaration
とlocalVariableDeclaration
に使われている。この二つはreturn typeが同じため、ADDで繋げられるが、
localVariableDeclarationのreturn typeは
List<UniVariableDec>
のため、ADDが使えなくなる。なので、variableDeclaratorListをfield用とlocal用に分けるのも考えているが、
なるべく元のグラマーファイルをいじらなくて、解決できる方法を探したい。
The text was updated successfully, but these errors were encountered: