(item: unknown)
| 655 | } as const; |
| 656 | |
| 657 | export function isInvocationExpr(item: unknown): item is InvocationExpr { |
| 658 | return reflection.isInstance(item, InvocationExpr.$type); |
| 659 | } |
| 660 | |
| 661 | export type LiteralExpr = BooleanLiteral | NumberLiteral | StringLiteral; |
| 662 |
no outgoing calls
no test coverage detected