Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpberkland2007-02-27 23:13:33 +0000
committerpberkland2007-02-27 23:13:33 +0000
commit8e7d90cea693ca4de36a350d623615ffeb9cf82d (patch)
tree3a9df8cfbcae9d109a0d61728db42615214aefbd /tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch/src/a7/X.js
parent26dfbcfb33130e23597875cb53a1b22e8a98b645 (diff)
downloadwebtools.jsdt.tests-8e7d90cea693ca4de36a350d623615ffeb9cf82d.tar.gz
webtools.jsdt.tests-8e7d90cea693ca4de36a350d623615ffeb9cf82d.tar.xz
webtools.jsdt.tests-8e7d90cea693ca4de36a350d623615ffeb9cf82d.zip
changes for javaScript
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch/src/a7/X.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch/src/a7/X.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch/src/a7/X.js b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch/src/a7/X.js
new file mode 100644
index 0000000..589910d
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch/src/a7/X.js
@@ -0,0 +1,8 @@
+package a7;
+/* Test case for bug 6779 searchDeclarationsOfReferencedTyped - missing exception types */
+public class X {
+ public void foo() throws MyException {
+ }
+}
+class MyException extends Exception {
+}

Back to the top