Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/TestAlreadyDefinedFunctionAssingedToField_0.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/TestAlreadyDefinedFunctionAssingedToField_0.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/TestAlreadyDefinedFunctionAssingedToField_0.js b/tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/TestAlreadyDefinedFunctionAssingedToField_0.js
new file mode 100644
index 0000000..3957d8d
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.ui.tests/testresources/ContentAssist/root/TestAlreadyDefinedFunctionAssingedToField_0.js
@@ -0,0 +1,12 @@
+var assignedAlreadyDefinedFunctions_Global0 = {};
+assignedAlreadyDefinedFunctions_Global0.func0 = function(test) {
+ return "";
+};
+
+var assignedAlreadyDefinedFunctions_Function0 = function(blarg) {
+ return 42;
+};
+
+function assignedAlreadyDefinedFunctions_Function1(foo) {
+ return true;
+};

Back to the top