org.jetbrains.jet.lang.cfg.pseudocode
Class LocalFunctionDeclarationInstruction
java.lang.Object
org.jetbrains.jet.lang.cfg.pseudocode.InstructionImpl
org.jetbrains.jet.lang.cfg.pseudocode.JetElementInstructionImpl
org.jetbrains.jet.lang.cfg.pseudocode.InstructionWithNext
org.jetbrains.jet.lang.cfg.pseudocode.LocalFunctionDeclarationInstruction
- All Implemented Interfaces:
- Instruction, JetElementInstruction
public class LocalFunctionDeclarationInstruction
- extends InstructionWithNext
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
LocalFunctionDeclarationInstruction
public LocalFunctionDeclarationInstruction(@NotNull
JetElement element,
@NotNull
Pseudocode body,
LexicalScope lexicalScope)
getBody
@NotNull
public Pseudocode getBody()
getNextInstructions
@NotNull
public java.util.Collection<Instruction> getNextInstructions()
- Specified by:
getNextInstructions
in interface Instruction
- Overrides:
getNextInstructions
in class InstructionWithNext
setSink
public void setSink(SubroutineSinkInstruction sink)
accept
public void accept(@NotNull
InstructionVisitor visitor)
accept
public <R> R accept(@NotNull
InstructionVisitorWithResult<R> visitor)
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
createCopy
@NotNull
protected Instruction createCopy()
- Specified by:
createCopy
in class InstructionImpl