Rev 1625 | Rev 1644 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1625 | Rev 1642 | ||
|---|---|---|---|
| Line 109... | Line 109... | ||
| 109 | { |
109 | { |
| 110 | this->SendResponse(plugin_name, request_id, "No such function found, " + name); |
110 | this->SendResponse(plugin_name, request_id, "No such function found, " + name); |
| 111 | return; |
111 | return; |
| 112 | } |
112 | } |
| 113 | 113 | ||
| 114 | LOG. |
114 | //LOG.Debug("Call: " + name); |
| 115 | 115 | ||
| 116 | Value result = this->functions_[name]->Call(this->context_->Global(), arguments->size(), arguments->data()); |
116 | Value result = this->functions_[name]->Call(this->context_->Global(), arguments->size(), arguments->data()); |
| 117 | 117 | ||
| 118 | if (result.IsEmpty()) |
118 | if (result.IsEmpty()) |
| 119 | { |
119 | { |