Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/JSDTWebContentAssist/WebContent/JSClassesII.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/JSDTWebContentAssist/WebContent/JSClassesII.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/JSDTWebContentAssist/WebContent/JSClassesII.js b/tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/JSDTWebContentAssist/WebContent/JSClassesII.js
new file mode 100644
index 000000000..6b36fc14f
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.web.ui.tests/testFiles/JSDTWebContentAssist/WebContent/JSClassesII.js
@@ -0,0 +1,38 @@
+var Computer = {
+ proc: {
+
+ },
+ memory : {}
+};
+
+var Installed = {};
+
+Computer.proc.IntelDualCore1=function(param1,param2) {
+ this.foo1 = 42;
+};
+Computer.proc.IntelDualCore2=function(param3,param4) {
+ this.foo2 = 42;
+};
+Computer.proc.IntelQuadCore = function(param5) {
+ this.foo3 = 42;
+};
+Computer.proc.CeleronXSeries = function() {
+ this.foo = 42;
+};
+
+Installed.CorelXSoftware = function() {
+ this.foo = 42;
+};
+
+
+ID
+
+CX
+
+IDC
+
+Comp
+
+Ins
+
+z //needed because the bar. causes compile issues \ No newline at end of file

Back to the top