about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_precedence_variations.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_precedence_variations.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_precedence_variations.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/js/scripting-lang/scratch_tests/test_precedence_variations.txt b/js/scripting-lang/scratch_tests/test_precedence_variations.txt
deleted file mode 100644
index 66a43bf..0000000
--- a/js/scripting-lang/scratch_tests/test_precedence_variations.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Test various precedence combinations */
-
-/* These should work */
-test1 : 5 + 3;
-test2 : -5;
-test3 : 5 * -3;
-test4 : (-5) + 3;
-
-/* This is the problematic one */
-test5 : -5 + 3;
-
-..out test1;
-..out test2;
-..out test3;
-..out test4;
-..out test5; 
\ No newline at end of file