diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-01-13 19:40:15 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-01-13 19:59:56 +0530 |
| commit | 42f8c401dc9519bc8b2d386ce9eda072144a46d0 (patch) | |
| tree | e886538eccbd47beaaf27deff69267bd8c7dd67d /src/eval-env/builtins.ts | |
| parent | 8ba316461d2dc0a1372af16836ce14ceabc2bf4f (diff) | |
| download | ts-types-lang-42f8c401dc9519bc8b2d386ce9eda072144a46d0.tar.gz ts-types-lang-42f8c401dc9519bc8b2d386ce9eda072144a46d0.zip | |
feat: refactors test runner
Diffstat (limited to 'src/eval-env/builtins.ts')
| -rw-r--r-- | src/eval-env/builtins.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eval-env/builtins.ts b/src/eval-env/builtins.ts index 3adde06..f9c4ce8 100644 --- a/src/eval-env/builtins.ts +++ b/src/eval-env/builtins.ts @@ -1,5 +1,6 @@ import { Type } from 'ts-morph' import { Ctx } from "../types" +import { evalList } from '../util' export default (ctx: Ctx, args: Type[]) => ({ SetEvalEnvironment: async () => { |
