(exp: string, expected?: string)
| 1813 | } |
| 1814 | |
| 1815 | function checkBinding(exp: string, expected?: string) { |
| 1816 | const ast = parseBinding(exp); |
| 1817 | if (expected == null) expected = exp; |
| 1818 | expect(unparse(ast)).toEqual(expected); |
| 1819 | validate(ast); |
| 1820 | } |
| 1821 | |
| 1822 | function checkAction(exp: string, expected?: string) { |
| 1823 | const ast = parseAction(exp); |
no test coverage detected