Skip to content

Commit

Permalink
[20] Provide implementation for new ASTVisitor methods concerning new (
Browse files Browse the repository at this point in the history
  • Loading branch information
jarthana committed Mar 22, 2023
1 parent 3afd9d4 commit 01ea161
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2022 IBM Corporation and others.
* Copyright (c) 2000, 2023 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -1035,6 +1035,16 @@ public void endVisit(EnhancedForStatement node) {
endVisit((Statement)node);
}

@Override
public boolean visit(EnhancedForWithRecordPattern node) {
return visit((Statement)node);
}

@Override
public void endVisit(EnhancedForWithRecordPattern node) {
endVisit((Statement)node);
}

@Override
public boolean visit(ExpressionStatement node) {
return visit((Statement)node);
Expand Down

0 comments on commit 01ea161

Please sign in to comment.