(ExecutionContext context)
| 102 | } |
| 103 | |
| 104 | public Completion interpret(ExecutionContext context) { |
| 105 | Boolean result = Types.toBoolean(getValue(this.testGet, context, getTest().interpret(context))); |
| 106 | |
| 107 | if (result) { |
| 108 | return(invokeCompiledBlockStatement(context, "Then", getThenBlock())); |
| 109 | } else if (getElseBlock() != null) { |
| 110 | return(invokeCompiledBlockStatement(context, "Else", getElseBlock())); |
| 111 | } else { |
| 112 | return(Completion.createNormal()); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | } |
nothing calls this directly
no test coverage detected