(pattern, x)
| 869 | // For example, "ax+b" can match "ax" or "x+b". |
| 870 | describe('NON EXACT WILDCARDS', () => { |
| 871 | const match2 = (pattern, x) => |
| 872 | match(pattern, x, { substitution: { _x: ce.expr('_x') } }); |
| 873 | |
| 874 | it('should match x for a + x', () => { |
| 875 | const result = match2(['Add', '_a', '_x'], '_x'); |
no test coverage detected