UNPKG

@abaplint/transpiler

Version:
11 lines (10 loc) 452 B
import { Nodes } from "@abaplint/core"; import { IExpressionTranspiler } from "./_expression_transpiler"; import { Traversal } from "../traversal"; import { Chunk } from "../chunk"; export declare class MethodSourceTranspiler implements IExpressionTranspiler { private prepend; private readonly privatePrefix; constructor(prepend?: string, privatePrefix?: boolean); transpile(node: Nodes.ExpressionNode, traversal: Traversal): Chunk; }