| class AS_CASE_WHEN < $AS_NODE |
|---|
| **** | A "when" clause of a "case" statement. The parser should make one of these for each object listed, eg. "when a,b,c then". When there are multiple targets, the `then_part's should be pointers to the same object. |
| $AS_NODE | $PROG_ERR | AS_NODE |
| attr then_part:AS_STMT_LIST; |
|---|
| **** | The statements to execute. |
| attr val:$AS_EXPR; |
|---|
| **** | A value to compare against. |
| attr then_part:AS_STMT_LIST; |
|---|
| **** | The statements to execute. |
| attr val:$AS_EXPR; |
|---|
| **** | A value to compare against. |