diff options
author | Lizzy Hunt <lizzy.hunt@usu.edu> | 2024-02-28 13:41:53 -0700 |
---|---|---|
committer | Lizzy Hunt <lizzy.hunt@usu.edu> | 2024-02-28 13:41:53 -0700 |
commit | d39cf84965dffd11cab440f5a4efa1b16932ba73 (patch) | |
tree | e0239d2047756120c51fd431999520ffbb38d29b /test/signature_match.spec.ts | |
parent | 7cc3ef5fa1feec8087618c899441a11052f84c48 (diff) | |
download | cps-interpreter-d39cf84965dffd11cab440f5a4efa1b16932ba73.tar.gz cps-interpreter-d39cf84965dffd11cab440f5a4efa1b16932ba73.zip |
branching
Diffstat (limited to 'test/signature_match.spec.ts')
-rw-r--r-- | test/signature_match.spec.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/signature_match.spec.ts b/test/signature_match.spec.ts index 10be880..02b8c89 100644 --- a/test/signature_match.spec.ts +++ b/test/signature_match.spec.ts @@ -1,13 +1,9 @@ import { expect, test } from 'bun:test'; -import { TestPrograms } from './programs'; -import { peggyParse } from '@/parser'; import { - evaluate, type DenotableFunctionSignature, denotableTypesEquivalent, matchSignature, } from '@/interpreter'; -import { testingLogger } from './logger'; test('simple denotable types are equivalent', () => { expect(denotableTypesEquivalent('int', 'int')).toBe(true); |