(ExecutionContext context)
| 51 | } |
| 52 | |
| 53 | @Override |
| 54 | public Completion interpret(ExecutionContext context) { |
| 55 | JSObject obj = Types.toObject(context, getValue(this.get, context, getExpr().interpret(context))); |
| 56 | BasicBlock block = compiledBlockStatement(context, "With", getBlock()); |
| 57 | return(context.executeWith(obj, block)); |
| 58 | } |
| 59 | |
| 60 | public List<VariableDeclaration> getVariableDeclarations() { |
| 61 | return this.block.getVariableDeclarations(); |
nothing calls this directly
no test coverage detected