| 1 | import * as assert from 'assert'; |
| 2 | import { describe, expect, test, vi, beforeEach, afterEach } from 'vitest'; |
| 3 | import { Parser, Interpreter, values, errors, utils, Ast } from '../src'; |
| 4 | import { FALSE, NUM, OBJ, STR, TRUE, Value } from '../src/interpreter/value'; |
nothing calls this directly
no test coverage detected