| 59 | } |
| 60 | |
| 61 | GDScriptParser *GDScriptParserRef::get_parser() { |
| 62 | if (parser == nullptr) { |
| 63 | parser = memnew(GDScriptParser); |
| 64 | } |
| 65 | return parser; |
| 66 | } |
| 67 | |
| 68 | GDScriptAnalyzer *GDScriptParserRef::get_analyzer() { |
| 69 | if (analyzer == nullptr) { |
no test coverage detected