From d214d813be4e244021df17e34dcd05890c5df44a Mon Sep 17 00:00:00 2001 From: rexim Date: Sun, 20 Jun 2021 18:43:44 +0700 Subject: [PATCH] Revert "(#76) add useless code" This reverts commit 8fcd0a827f90965c0e415643d997f5519dfa3858. --- ts/eval.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/ts/eval.ts b/ts/eval.ts index 895426d..5ccc100 100644 --- a/ts/eval.ts +++ b/ts/eval.ts @@ -12,9 +12,6 @@ interface BinaryOpDef { prec: BinaryPrec } -function f() { -} - const BINARY_OPS: {[op in BinaryOp]: BinaryOpDef} = { '+': { func: (lhs, rhs) => lhs + rhs,