| 6415 | } |
| 6416 | |
| 6417 | Error GDScriptAnalyzer::resolve_body() { |
| 6418 | resolve_class_body(parser->head, true); |
| 6419 | |
| 6420 | #ifdef DEBUG_ENABLED |
| 6421 | // Apply here, after all `@warning_ignore`s have been resolved and applied. |
| 6422 | parser->apply_pending_warnings(); |
| 6423 | #endif // DEBUG_ENABLED |
| 6424 | |
| 6425 | return parser->errors.is_empty() ? OK : ERR_PARSE_ERROR; |
| 6426 | } |
| 6427 | |
| 6428 | Error GDScriptAnalyzer::resolve_dependencies() { |
| 6429 | for (KeyValue<String, Ref<GDScriptParserRef>> &K : parser->depended_parsers) { |
no test coverage detected