Uses of Record Class
org.ek9lang.compiler.ir.data.ControlFlowChainDetails
Packages that use ControlFlowChainDetails
Package
Description
-
Uses of ControlFlowChainDetails in org.ek9lang.compiler.ir.data
Methods in org.ek9lang.compiler.ir.data that return ControlFlowChainDetailsModifier and TypeMethodDescriptionstatic ControlFlowChainDetails
ControlFlowChainDetails.createIfElse
(String result, List<ConditionCaseDetails> conditionChain, List<IRInstr> defaultBodyEvaluation, String defaultResult, DebugInfo debugInfo, String scopeId) Create details for an if/else statement.static ControlFlowChainDetails
ControlFlowChainDetails.createIfElseWithGuards
(String result, List<String> guardVariables, List<IRInstr> guardScopeSetup, String guardScopeId, String conditionScopeId, List<ConditionCaseDetails> conditionChain, List<IRInstr> defaultBodyEvaluation, String defaultResult, DebugInfo debugInfo, String scopeId) Create details for if/else with guard variables.static ControlFlowChainDetails
ControlFlowChainDetails.createQuestionOperator
(String result, List<ConditionCaseDetails> conditionChain, List<IRInstr> defaultBodyEvaluation, String defaultResult, DebugInfo debugInfo, String scopeId) Create details for a Question operator (?).static ControlFlowChainDetails
ControlFlowChainDetails.createSwitch
(String result, String evaluationVariable, String evaluationVariableType, List<IRInstr> evaluationVariableSetup, String returnVariable, String returnVariableType, List<IRInstr> returnVariableSetup, List<ConditionCaseDetails> conditionChain, List<IRInstr> defaultBodyEvaluation, String defaultResult, DebugInfo debugInfo, String scopeId) Create details for a general switch statement.static ControlFlowChainDetails
ControlFlowChainDetails.createSwitchEnum
(String result, String evaluationVariable, String evaluationVariableType, List<IRInstr> evaluationVariableSetup, String returnVariable, String returnVariableType, List<IRInstr> returnVariableSetup, List<ConditionCaseDetails> conditionChain, List<IRInstr> defaultBodyEvaluation, String defaultResult, EnumOptimizationDetails enumOptimizationInfo, DebugInfo debugInfo, String scopeId) Create details for a switch statement with enum optimization.static ControlFlowChainDetails
ControlFlowChainDetails.createSwitchWithGuards
(String result, List<String> guardVariables, List<IRInstr> guardScopeSetup, String guardScopeId, String conditionScopeId, String evaluationVariable, String evaluationVariableType, List<IRInstr> evaluationVariableSetup, String returnVariable, String returnVariableType, List<IRInstr> returnVariableSetup, List<ConditionCaseDetails> conditionChain, List<IRInstr> defaultBodyEvaluation, String defaultResult, DebugInfo debugInfo, String scopeId) Create details for switch with guard variables. -
Uses of ControlFlowChainDetails in org.ek9lang.compiler.ir.instructions
Methods in org.ek9lang.compiler.ir.instructions with parameters of type ControlFlowChainDetailsModifier and TypeMethodDescriptionstatic ControlFlowChainInstr
ControlFlowChainInstr.controlFlowChain
(ControlFlowChainDetails details) Create a unified switch chain block instruction.static ControlFlowChainInstr
ControlFlowChainInstr.controlFlowChain
(ControlFlowChainDetails details, String scopeId) Create a unified switch chain block instruction with explicit scope ID. -
Uses of ControlFlowChainDetails in org.ek9lang.compiler.phase7.generator
Classes in org.ek9lang.compiler.phase7.generator that implement interfaces with type arguments of type ControlFlowChainDetailsModifier and TypeClassDescriptionfinal class
Unified generator for all EK9 control flow constructs using CONTROL_FLOW_CHAIN.Methods in org.ek9lang.compiler.phase7.generator with parameters of type ControlFlowChainDetailsModifier and TypeMethodDescriptionControlFlowChainGenerator.apply
(ControlFlowChainDetails details)