Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/test377241.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/test377241.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/test377241.js b/tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/test377241.js
index 771562f..339109e 100644
--- a/tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/test377241.js
+++ b/tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/test377241.js
@@ -1,6 +1,6 @@
-function foo() {
+function bar() {
this.id = 0;
}
-var obj = {p1:new foo()};
+var tst = {p1:new bar()};
-obj["p1"].
+tst["p1"].

Back to the top