Lines Matching full:execute
55 Value AccessorNode::Execute(Scope* scope, Err* err) const {
56 Value index_value = index_->Execute(scope, err);
121 Value BinaryOpNode::Execute(Scope* scope, Err* err) const {
153 Value BlockNode::Execute(Scope* containing_scope, Err* err) const {
191 // Check for trying to execute things with no side effects in a block.
200 cur->Execute(our_scope, err);
217 Value ConditionNode::Execute(Scope* scope, Err* err) const {
218 Value condition_result = condition_->Execute(scope, err);
235 // "else if" and we can just Execute it and the condition will handle
242 if_false_->Execute(scope, err);
279 Value FunctionCallNode::Execute(Scope* scope, Err* err) const {
316 Value IdentifierNode::Execute(Scope* scope, Err* err) const {
351 Value ListNode::Execute(Scope* scope, Err* err) const {
358 results[i] = cur->Execute(scope, err);
401 Value LiteralNode::Execute(Scope* scope, Err* err) const {
451 Value UnaryOpNode::Execute(Scope* scope, Err* err) const {
452 Value operand_value = operand_->Execute(scope, err);