| 12 | const parse = source => parser.parse(`(${source});`).program.body[0].expression; // quick way to get an exp node |
| 13 | |
| 14 | const parseAndEval = source => evalStringConcat(parse(source)); |
| 15 | |
| 16 | describe('evalToString', () => { |
| 17 | it('should support StringLiteral', () => { |
no test coverage detected