From c7a137861494edd65d0c8de76ab09f422ab15481 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 21 Jan 2024 16:12:43 +0530 Subject: feat(eval): adds evaluation for simple binop expressions --- src/parser.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parser.ts') diff --git a/src/parser.ts b/src/parser.ts index a2bb577..c2aa30f 100644 --- a/src/parser.ts +++ b/src/parser.ts @@ -2,6 +2,7 @@ import { Enum, constructors, match, matchString } from './utils/adt' import * as P from './utils/parser-comb' import { Result } from './utils/result' +// TODO: vh, vw export type CSSUnit = '' | 's' | 'ms' | 'px' | '%' | 'rem' | 'em' export type BinOp = '+' | '-' | '*' | '/' -- cgit v1.3.1