(exp: string, expected?: string)
| 1810 | } |
| 1811 | |
| 1812 | function checkBinding(exp: string, expected?: string) { |
| 1813 | const ast = parseBinding(exp); |
| 1814 | if (expected == null) expected = exp; |
| 1815 | expect(unparse(ast)).toEqual(expected); |
| 1816 | validate(ast); |
| 1817 | } |
| 1818 | |
| 1819 | function checkAction(exp: string, expected?: string) { |
| 1820 | const ast = parseAction(exp); |
no test coverage detected
searching dependent graphs…