UNPKG

@specs-feup/alpakka

Version:

A Smali/APK source-to-source compiler written in Typescript

23 lines 986 B
import InstructionNode from "./InstructionNode.js"; import BaseNode from "../../../graph/BaseNode.js"; import { NodeBuilder, NodeTypeGuard } from "../../../graph/Node.js"; import { Label } from "../../../../../../Joinpoints.js"; declare namespace LabelNode { class Class<D extends Data = Data, S extends ScratchData = ScratchData> extends InstructionNode.Class<D, S> { get jp(): Label; } class Builder extends InstructionNode.Builder implements NodeBuilder<Data, ScratchData> { constructor($jp: Label); buildData(data: BaseNode.Data): Data; buildScratchData(scratchData: BaseNode.ScratchData): ScratchData; } const TypeGuard: NodeTypeGuard<Data, ScratchData>; interface Data extends InstructionNode.Data { instructionFlowNodeType: InstructionNode.Type.LABEL; } interface ScratchData extends InstructionNode.ScratchData { $jp: Label; } } export default LabelNode; //# sourceMappingURL=LabelNode.d.ts.map