about summary refs log tree commit diff stats
path: root/js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt')
-rw-r--r--js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt b/js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt
deleted file mode 100644
index 5e74da6..0000000
--- a/js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Debug test for table copy issues */
-
-/* Test 1: Create a simple table */
-test_table : { status: "placeholder" };
-..out "Table created";
-
-/* Test 2: Copy the table */
-copy_table : test_table;
-..out "Table copied";
-
-/* Test 3: Check original table */
-..out test_table.status;
-
-/* Test 4: Check copied table */
-..out copy_table.status; 
\ No newline at end of file