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/Converter/src/test0466/Assert.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/Converter/src/test0466/Assert.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Converter/src/test0466/Assert.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Converter/src/test0466/Assert.js b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Converter/src/test0466/Assert.js
new file mode 100644
index 0000000..b7a2f0a
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/Converter/src/test0466/Assert.js
@@ -0,0 +1,15 @@
+package test0466;
+
+public class Assert {
+ public static final void notNull(Object ref, String message)
+ {
+ assert ref != null : message;
+ }
+
+ void method(String param1, String param2, String param3)
+ {
+ Assert.notNull(param1, "param1 != null");
+ Assert.notNull(param2, "param2 != null");
+ Assert.notNull(param3, "param3 != null");
+ }
+} \ No newline at end of file

Back to the top