Uses of Class
gw.lang.ir.IRStatement
-
Packages that use IRStatement Package Description gw.lang.ir gw.lang.ir.builder gw.lang.ir.builder.statement gw.lang.ir.statement -
-
Uses of IRStatement in gw.lang.ir
Subclasses of IRStatement in gw.lang.ir Modifier and Type Class Description classIRAbstractLoopStatement -
Uses of IRStatement in gw.lang.ir.builder
Methods in gw.lang.ir.builder that return IRStatement Modifier and Type Method Description IRStatementIRStatementBuilder. build(IRBuilderContext context)protected abstract IRStatementIRStatementBuilder. buildImpl(IRBuilderContext context) -
Uses of IRStatement in gw.lang.ir.builder.statement
Methods in gw.lang.ir.builder.statement that return IRStatement Modifier and Type Method Description protected IRStatementIRArrayStoreStatementBuilder. buildImpl(IRBuilderContext context)protected IRStatementIRAssignmentStatementBuilder. buildImpl(IRBuilderContext context)protected IRStatementIRFieldSetStatementBuilder. buildImpl(IRBuilderContext context)protected IRStatementIRIfStatementBuilder. buildImpl(IRBuilderContext context)protected IRStatementIRReturnStatementBuilder. buildImpl(IRBuilderContext context)protected IRStatementIRStatementListBuilder. buildImpl(IRBuilderContext context) -
Uses of IRStatement in gw.lang.ir.statement
Subclasses of IRStatement in gw.lang.ir.statement Modifier and Type Class Description classIRArrayStoreStatementclassIRAssignmentStatementclassIRBreakStatementclassIRContinueStatementclassIRDoWhileStatementclassIREvalStatementclassIRFieldDeclclassIRFieldSetStatementclassIRForEachStatementclassIRIfStatementclassIRImplicitReturnStatementclassIRMethodCallStatementclassIRMethodStatementclassIRMonitorLockAcquireStatementclassIRMonitorLockReleaseStatementclassIRNewStatementclassIRNoOpStatementclassIRReturnStatementclassIRStatementListclassIRSwitchStatementclassIRSyntheticStatementclassIRThrowStatementclassIRTryCatchFinallyStatementclassIRWhileStatementMethods in gw.lang.ir.statement that return IRStatement Modifier and Type Method Description IRStatementIRCatchClause. getBody()IRStatementIRDoWhileStatement. getBody()IRStatementIRForEachStatement. getBody()IRStatementIRWhileStatement. getBody()IRStatementIRIfStatement. getElseStatement()IRStatementIRTryCatchFinallyStatement. getFinallyBody()IRStatementIRIfStatement. getIfStatement()IRStatementIRSwitchStatement. getInit()IRStatementIRMethodStatement. getMethodBody()IRStatementIRReturnStatement. getTempVarAssignment()IRStatementIRTryCatchFinallyStatement. getTryBody()Methods in gw.lang.ir.statement that return types with arguments of type IRStatement Modifier and Type Method Description List<IRStatement>IRSwitchStatement. getDefaultStatements()List<IRStatement>IRForEachStatement. getIncrementors()List<IRStatement>IRForEachStatement. getInitializers()List<IRStatement>IRCaseClause. getStatements()List<IRStatement>IRStatementList. getStatements()Methods in gw.lang.ir.statement with parameters of type IRStatement Modifier and Type Method Description voidIRForEachStatement. addIncrementor(IRStatement incrementor)voidIRForEachStatement. addInitializer(IRStatement initializer)voidIRStatementList. addStatement(IRStatement statement)voidIRStatementList. mergeStatements(IRStatement irStatement)voidIRDoWhileStatement. setBody(IRStatement irStatement)voidIRForEachStatement. setBody(IRStatement irStatement)voidIRWhileStatement. setBody(IRStatement irStatement)voidIRIfStatement. setElseStatement(IRStatement elseStatement)Constructors in gw.lang.ir.statement with parameters of type IRStatement Constructor Description IRCatchClause(IRSymbol identifier, IRStatement body)IRIfStatement(IRExpression expression, IRStatement ifStatement, IRStatement elseStatement)IRImplicitReturnStatement(IRStatement tempVarAssignment, IRExpression returnValue)IRMethodStatement(IRStatement methodBody, String name, int modifiers, boolean explicitInternal, IRType returnType, IType returnIType, List<IRSymbol> parameters, IType[] argTypes, IType methodType, Object[] annotationDefault)IRMethodStatement(IRStatement methodBody, String name, int modifiers, boolean explicitInternal, IRType returnType, List<IRSymbol> parameters)IRMethodStatement(IRStatement methodBody, String name, int modifiers, boolean explicitInternal, IRType returnType, List<IRSymbol> parameters, Object[] annotationDefault)IRReturnStatement(IRStatement tempVarAssignment, IRExpression returnValue)IRStatementList(boolean hasScope, IRStatement... statements)IRSwitchStatement(IRStatement init, List<IRCaseClause> cases, List<IRStatement> defaultStatements, boolean areLabelsConstant)IRTryCatchFinallyStatement(IRStatement tryBody, List<IRCatchClause> catchStatements, IRStatement finallyBody)Constructor parameters in gw.lang.ir.statement with type arguments of type IRStatement Constructor Description IRCaseClause(IRExpression condition, List<IRStatement> statements, int constValue)IRStatementList(boolean hasScope, List<IRStatement> statements)
-