about summary refs log tree commit diff stats
path: root/js/scripting-lang/baba-yaga-c/test_table_pattern.txt
blob: 5562260b26932481059692817b161937c6dd5134 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* Test table pattern matching */

/* Test table pattern matching */
test_table : { status: "placeholder", message: "test" };
result : when test_table is
    { status: "placeholder" } then "Placeholder detected"
    { status: "active" } then "Active state detected"
    _ then "Unknown state";
..out result;