| 66 | } |
| 67 | |
| 68 | GDScriptAnalyzer *GDScriptParserRef::get_analyzer() { |
| 69 | if (analyzer == nullptr) { |
| 70 | analyzer = memnew(GDScriptAnalyzer(get_parser())); |
| 71 | } |
| 72 | return analyzer; |
| 73 | } |
| 74 | |
| 75 | Error GDScriptParserRef::raise_status(Status p_new_status) { |
| 76 | ERR_FAIL_COND_V(clearing, ERR_BUG); |
no test coverage detected