(StarlarkThread.Frame fr, ConditionalExpression cond)
| 626 | } |
| 627 | |
| 628 | private static Object evalConditional(StarlarkThread.Frame fr, ConditionalExpression cond) |
| 629 | throws EvalException, InterruptedException { |
| 630 | Object v = eval(fr, cond.getCondition()); |
| 631 | return eval(fr, Starlark.truth(v) ? cond.getThenCase() : cond.getElseCase()); |
| 632 | } |
| 633 | |
| 634 | private static Object evalDict(StarlarkThread.Frame fr, DictExpression dictexpr) |
| 635 | throws EvalException, InterruptedException { |
no test coverage detected