Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoj Palat2017-05-08 10:28:57 +0000
committerManoj Palat2017-05-08 10:28:57 +0000
commitd90f3254fdce24bb86ff311dd64b519305a170ea (patch)
tree5c7455bd9ceb0f79e6e9d481209a36eae07edf60 /org.eclipse.jdt.core.tests.performance
parent49e9d0cec84062b8f937bcce9ab15ec576e3a013 (diff)
downloadeclipse.jdt.core-d90f3254fdce24bb86ff311dd64b519305a170ea.tar.gz
eclipse.jdt.core-d90f3254fdce24bb86ff311dd64b519305a170ea.tar.xz
eclipse.jdt.core-d90f3254fdce24bb86ff311dd64b519305a170ea.zip
test part of fix for bug 515792 [1.9] [dom ast] visitor additions forY20170512-0230Y20170511-1500Y20170511-1000
module node
Diffstat (limited to 'org.eclipse.jdt.core.tests.performance')
-rw-r--r--org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceASTTests.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceASTTests.java b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceASTTests.java
index 58878e7f16..6cf34f9c90 100644
--- a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceASTTests.java
+++ b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/FullSourceWorkspaceASTTests.java
@@ -1,10 +1,14 @@
/*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 20157IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
+ * This is an implementation of an early-draft specification developed under the Java
+ * Community Process (JCP) and is made available for testing and evaluation purposes
+ * only. The code is not compatible with any specification of the JCP.
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -223,6 +227,9 @@ public class FullSourceWorkspaceASTTests extends FullSourceWorkspaceTests {
public boolean visit(MethodDeclaration node) {
return visitNode(node);
}
+ public boolean visit(ModuleDeclaration node) {
+ return visitNode(node);
+ }
public boolean visit(MethodInvocation node) {
return visitNode(node);
}
@@ -431,6 +438,9 @@ public class FullSourceWorkspaceASTTests extends FullSourceWorkspaceTests {
public void endVisit(MethodDeclaration node) {
endVisitNode(node);
}
+ public void endVisit(ModuleDeclaration node) {
+ endVisitNode(node);
+ }
public void endVisit(MethodInvocation node) {
endVisitNode(node);
}

Back to the top