Refactor executor to make it able to call recursively
and Add variable declarator using callExpression AST test
This commit is contained in:
@ -389,7 +389,7 @@ function makeLiteral(tokens: Token[], index: number): Literal {
|
||||
};
|
||||
}
|
||||
|
||||
interface BinaryExpression extends GeneralStatement {
|
||||
export interface BinaryExpression extends GeneralStatement {
|
||||
type: "BinaryExpression";
|
||||
operator: string;
|
||||
left: BinaryPart;
|
||||
|
Reference in New Issue
Block a user