UNPKG

jintr

Version:

A tiny JavaScript interpreter written in TypeScript.

7 lines (6 loc) 210 B
import type ESTree from 'estree'; import BaseJSNode from './BaseJSNode.js'; export default class BinaryExpression extends BaseJSNode<ESTree.BinaryExpression> { private static operatorMap; run(): any; }