import { GLODataType } from '@glossa-glo/data-types'; import AST from './AST'; import type { SymbolScope } from '@glossa-glo/symbol'; export default abstract class BinaryAST extends AST { private _left; private _right; get left(): L; set left(value: L); get right(): R; set right(value: R); promote(target: typeof GLODataType, scope: SymbolScope): this; constructor(left: L, right: R); } //# sourceMappingURL=BinaryAST.d.ts.map