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, 15 insertions, 0 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
new file mode 100644
index 0000000..5e74da6
--- /dev/null
+++ b/js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt
@@ -0,0 +1,15 @@
+/* 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