@gyro-lang/core
Version:
Fast, Performant and scalable programming language designed for string manipulation and deep recursion.
17 lines (16 loc) • 341 B
TypeScript
interface ASTToken {
elements: any;
type: string;
value: any;
left?: ASTToken;
operator?: ASTToken;
right?: ASTToken;
name?: string;
vars?: string[];
body?: ASTToken;
cond?: ASTToken;
then?: ASTToken;
else?: ASTToken;
}
declare function compileJS(exp: ASTToken): string;
export { compileJS };