summaryrefslogtreecommitdiff
path: root/test/lsp/js
diff options
context:
space:
mode:
Diffstat (limited to 'test/lsp/js')
-rw-r--r--test/lsp/js/main.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/lsp/js/main.js b/test/lsp/js/main.js
new file mode 100644
index 0000000..ccf94ed
--- /dev/null
+++ b/test/lsp/js/main.js
@@ -0,0 +1,13 @@
+/** this is my favorit funciton */
+function funciton() {
+ var xYz = 123;
+ xYz += 555;
+ console.log(xYz);
+}
+
+function main() {
+ funciton();
+}
+
+main();
+funciton();