Package gw.lang.ir.expression
Class IRMethodCallExpression
- java.lang.Object
-
- gw.lang.ir.IRElement
-
- gw.lang.ir.IRExpression
-
- gw.lang.ir.expression.IRMethodCallExpression
-
public class IRMethodCallExpression extends IRExpression
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<IRExpression>_argsprivate boolean_interfaceprivate boolean_isSpecialprivate java.lang.String_nameprivate IRType_ownersTypeprivate java.util.List<IRType>_parameterTypesprivate IRType_returnTypeprivate IRExpression_rootprivate IRType_structureTypeOwner
-
Constructor Summary
Constructors Constructor Description IRMethodCallExpression(java.lang.String name, IRType ownersType, boolean isInterface, IRType returnType, java.util.List<IRType> parameterTypes, IRExpression root, java.util.List<IRExpression> args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<IRExpression>getArgs()java.lang.StringgetName()IRTypegetOwnersType()java.util.List<IRType>getParameterTypes()IRTypegetReturnType()IRExpressiongetRoot()IRTypegetType()booleanisInterface()booleanisSpecial()voidsetSpecial(boolean special)voidsetStructuralTypeOwner(IRType gosuClassIRType)-
Methods inherited from class gw.lang.ir.IRExpression
getConditionContext
-
Methods inherited from class gw.lang.ir.IRElement
getLineNumber, getParent, isImplicit, maybeEraseStructuralSymbolTypes, maybeEraseStructuralType, maybeEraseStructuralType, maybeEraseStructuralTypes, setImplicit, setLineNumber, setParent, setParentToThis
-
-
-
-
Field Detail
-
_name
private java.lang.String _name
-
_ownersType
private IRType _ownersType
-
_interface
private boolean _interface
-
_returnType
private IRType _returnType
-
_parameterTypes
private java.util.List<IRType> _parameterTypes
-
_root
private IRExpression _root
-
_args
private java.util.List<IRExpression> _args
-
_isSpecial
private boolean _isSpecial
-
_structureTypeOwner
private IRType _structureTypeOwner
-
-
Constructor Detail
-
IRMethodCallExpression
public IRMethodCallExpression(java.lang.String name, IRType ownersType, boolean isInterface, IRType returnType, java.util.List<IRType> parameterTypes, IRExpression root, java.util.List<IRExpression> args)
-
-
Method Detail
-
getName
public java.lang.String getName()
-
getOwnersType
public IRType getOwnersType()
-
getReturnType
public IRType getReturnType()
-
getParameterTypes
public java.util.List<IRType> getParameterTypes()
-
getRoot
public IRExpression getRoot()
-
getArgs
public java.util.List<IRExpression> getArgs()
-
isInterface
public boolean isInterface()
-
isSpecial
public boolean isSpecial()
-
setSpecial
public void setSpecial(boolean special)
-
getType
public IRType getType()
- Specified by:
getTypein classIRExpression
-
setStructuralTypeOwner
public void setStructuralTypeOwner(IRType gosuClassIRType)
-
-