| 2606 | } |
| 2607 | |
| 2608 | bool GDScriptParser::PatternNode::has_bind(const StringName &p_name) { |
| 2609 | return binds.has(p_name); |
| 2610 | } |
| 2611 | |
| 2612 | GDScriptParser::IdentifierNode *GDScriptParser::PatternNode::get_bind(const StringName &p_name) { |
| 2613 | return binds[p_name]; |
no test coverage detected