| 672 | } |
| 673 | |
| 674 | bool Hotspot::HasFunction(const std::string& function_definition) { |
| 675 | bool result = false; |
| 676 | |
| 677 | if (as_context) { |
| 678 | result = as_context->HasFunction(function_definition); |
| 679 | } |
| 680 | |
| 681 | return result; |
| 682 | } |
| 683 | |
| 684 | int Hotspot::QueryIntFunction(const std::string& function) { |
| 685 | if (as_context) { |
no outgoing calls
no test coverage detected