about summary refs log tree commit diff stats
path: root/js/scripting-lang/baba-yaga-c/test_table_copy_debug.txt
blob: 5e74da66f09ef2a0482390752378dcfafdd18a95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;