(raw: any)
| 1430 | |
| 1431 | // Helper to check if a value is a Value expression |
| 1432 | function isValue(raw: any): boolean { |
| 1433 | return ( |
| 1434 | raw instanceof ValClass || |
| 1435 | (raw && typeof raw === `object` && `type` in raw && raw.type === `val`) |
| 1436 | ) |
| 1437 | } |
| 1438 | |
| 1439 | // Helper to unwrap a Value expression or return the value itself |
| 1440 | function unwrapValue(value: any): any { |