@@ -171,10 +171,6 @@ export abstract class JavaCstVisitor<IN, OUT> implements ICstVisitor<IN, OUT> {
171171 param ?: IN
172172 ) : OUT ;
173173 isDims ( ctx : IsDimsCtx , param ?: IN ) : OUT ;
174- isFollowingVariableDeclarator (
175- ctx : IsFollowingVariableDeclaratorCtx ,
176- param ?: IN
177- ) : OUT ;
178174 compilationUnit ( ctx : CompilationUnitCtx , param ?: IN ) : OUT ;
179175 ordinaryCompilationUnit ( ctx : OrdinaryCompilationUnitCtx , param ?: IN ) : OUT ;
180176 modularCompilationUnit ( ctx : ModularCompilationUnitCtx , param ?: IN ) : OUT ;
@@ -503,10 +499,6 @@ export abstract class JavaCstVisitorWithDefaults<IN, OUT>
503499 param ?: IN
504500 ) : OUT ;
505501 isDims ( ctx : IsDimsCtx , param ?: IN ) : OUT ;
506- isFollowingVariableDeclarator (
507- ctx : IsFollowingVariableDeclaratorCtx ,
508- param ?: IN
509- ) : OUT ;
510502 compilationUnit ( ctx : CompilationUnitCtx , param ?: IN ) : OUT ;
511503 ordinaryCompilationUnit ( ctx : OrdinaryCompilationUnitCtx , param ?: IN ) : OUT ;
512504 modularCompilationUnit ( ctx : ModularCompilationUnitCtx , param ?: IN ) : OUT ;
@@ -1802,16 +1794,6 @@ export type IsDimsCtx = {
18021794 RBrace ?: IToken [ ] ;
18031795} ;
18041796
1805- export interface IsFollowingVariableDeclaratorCstNode extends CstNode {
1806- name : "isFollowingVariableDeclarator" ;
1807- children : IsFollowingVariableDeclaratorCtx ;
1808- }
1809-
1810- export type IsFollowingVariableDeclaratorCtx = {
1811- Comma : IToken [ ] ;
1812- variableDeclarator : VariableDeclaratorCstNode [ ] ;
1813- } ;
1814-
18151797export interface CompilationUnitCstNode extends CstNode {
18161798 name : "compilationUnit" ;
18171799 children : CompilationUnitCtx ;
0 commit comments