From 56432f16491fdff19713880e167becc5ecb7f580 Mon Sep 17 00:00:00 2001 From: Jeetaditya Chatterjee Date: Sat, 21 Aug 2021 21:51:39 +0100 Subject: [PATCH] test(tree-sitter): remove test.js It does not belong in the module or the repo --- modules/tools/tree-sitter/test.js | 52 ------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 modules/tools/tree-sitter/test.js diff --git a/modules/tools/tree-sitter/test.js b/modules/tools/tree-sitter/test.js deleted file mode 100644 index c2ab5d40a..000000000 --- a/modules/tools/tree-sitter/test.js +++ /dev/null @@ -1,52 +0,0 @@ -// this is a test file i am useing to test functionallity with treesitter - -// blocks -x = 10 - -// calls -call(); - -// class -class Car { - constructor(name, year) { - this.name = name; - this.year = year; - } - age(x) { - return x - this.year; - } -} - -// comments -/* - * multiline my dude - * a poem - * roses are red - * violets are blue - * there is a man behind you - * and he had an axe with him to - */ - - -// conditional -if (x == 1) { - doStuff(); -} else { - x = new Car.age(2020) -} - - -// function -function name(arg) { - doStuff(arg); -} - -const arrowFunc = arg => { - dosStuff(arg); -} - -// loop -for (let i = 0; i <= 10; i++) { - doStuff(i); -} -// param