Searched refs:reqInit (Results 1 - 1 of 1) sorted by relevance

/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java3000 * @param reqInit Is an initializer always required?
3007 boolean reqInit,
3011 vdefs.append(variableDeclaratorRest(pos, mods, type, name, reqInit, dc));
3016 vdefs.append(variableDeclarator(mods, type, reqInit, dc));
3024 JCVariableDecl variableDeclarator(JCModifiers mods, JCExpression type, boolean reqInit, Comment dc) { argument
3025 return variableDeclaratorRest(token.pos, mods, type, ident(), reqInit, dc);
3031 * @param reqInit Is an initializer always required?
3035 boolean reqInit, Comment dc) {
3042 else if (reqInit) syntaxError(token.pos, "expected", EQ);
3003 variableDeclaratorsRest(int pos, JCModifiers mods, JCExpression type, Name name, boolean reqInit, Comment dc, T vdefs) argument
3034 variableDeclaratorRest(int pos, JCModifiers mods, JCExpression type, Name name, boolean reqInit, Comment dc) argument

Completed in 44 milliseconds