UNPKG

jintr

Version:

A tiny JavaScript interpreter written in TypeScript.

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