Package gw.lang.ir.statement
Class IRFieldDecl
- java.lang.Object
-
- gw.lang.ir.IRElement
-
- gw.lang.ir.IRStatement
-
- gw.lang.ir.statement.IRFieldDecl
-
public class IRFieldDecl extends IRStatement
-
-
Constructor Summary
Constructors Constructor Description IRFieldDecl(int modifiers, boolean explicitInternal, String name, IRType type, IType iType, Object value)
IRFieldDecl(int modifiers, boolean explicitInternal, String name, IRType type, Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<IRAnnotation>
getAnnotations()
String
getGenericSignature()
IRTerminalStatement
getLeastSignificantTerminalStatement()
int
getModifiers()
String
getName()
IRType
getType()
Object
getValue()
boolean
isExplicitInternal()
void
setAnnotations(List<IRAnnotation> irAnnotations)
-
Methods inherited from class gw.lang.ir.IRStatement
getOriginalSourceStatement, setOriginalSourceStatement
-
Methods inherited from class gw.lang.ir.IRElement
getLineNumber, getParent, isImplicit, maybeEraseStructuralSymbolTypes, maybeEraseStructuralType, maybeEraseStructuralType, maybeEraseStructuralTypes, setImplicit, setLineNumber, setParent, setParentToThis
-
-
-
-
Method Detail
-
getModifiers
public int getModifiers()
-
getName
public String getName()
-
getType
public IRType getType()
-
getValue
public Object getValue()
-
getLeastSignificantTerminalStatement
public IRTerminalStatement getLeastSignificantTerminalStatement()
- Specified by:
getLeastSignificantTerminalStatement
in classIRStatement
-
setAnnotations
public void setAnnotations(List<IRAnnotation> irAnnotations)
-
getAnnotations
public List<IRAnnotation> getAnnotations()
-
getGenericSignature
public String getGenericSignature()
-
isExplicitInternal
public boolean isExplicitInternal()
-
-