diff options
Diffstat (limited to 'tests/parser.spec.ts')
| -rw-r--r-- | tests/parser.spec.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/parser.spec.ts b/tests/parser.spec.ts index 6c773d6..8a53faf 100644 --- a/tests/parser.spec.ts +++ b/tests/parser.spec.ts @@ -4,14 +4,10 @@ import { whitespace, whitespaces0, delimited, - sepBy1, - symbol, } from '../src/parser/utils' import { parser } from '../src/parser' import { none, some } from 'fp-ts/Option' import { Expr, Literal } from '../src/types' -import { jlog } from '../src/utils' -import { parse } from 'fp-ts/lib/Json' const wrap = (e: Expr) => right([[none, e, none], '']) const grouped = (l: Expr[]) => wrap(Expr.Group({ exprs: l })) @@ -88,7 +84,7 @@ describe('Parser', () => { exprs: [ Expr.AnyString(), Expr.Group({ exprs: [Expr.AnyBool(), Expr.Truthy()] }), - ] + ], }), Expr.AnyNumber(), ]), |
