Package org.teavm.ast
Class AsyncMethodNode
- java.lang.Object
-
- org.teavm.ast.MethodNode
-
- org.teavm.ast.AsyncMethodNode
-
public class AsyncMethodNode extends MethodNode
-
-
Constructor Summary
Constructors Constructor Description AsyncMethodNode(MethodReference reference)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptVisitor(MethodNodeVisitor visitor)java.util.List<AsyncMethodPart>getBody()java.util.List<VariableNode>getVariables()booleanisAsync()-
Methods inherited from class org.teavm.ast.MethodNode
getModifiers, getReference
-
-
-
-
Constructor Detail
-
AsyncMethodNode
public AsyncMethodNode(MethodReference reference)
-
-
Method Detail
-
getBody
public java.util.List<AsyncMethodPart> getBody()
-
getVariables
public java.util.List<VariableNode> getVariables()
- Specified by:
getVariablesin classMethodNode
-
acceptVisitor
public void acceptVisitor(MethodNodeVisitor visitor)
- Specified by:
acceptVisitorin classMethodNode
-
isAsync
public boolean isAsync()
- Specified by:
isAsyncin classMethodNode
-
-