UNPKG

@specs-feup/alpakka

Version:

Alpakka is a [LARA Framework](https://github.com/specs-feup/lara-framework) source-to-source compiler for Android's [smali](https://github.com/google/smali) syntax. It enables the analysis and transformation of Android apps through APK files.

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