| 79 | HashMap<StringName, GDScriptParser::AnnotationInfo> GDScriptParser::valid_annotations; |
| 80 | |
| 81 | void GDScriptParser::cleanup() { |
| 82 | builtin_types.clear(); |
| 83 | valid_annotations.clear(); |
| 84 | } |
| 85 | |
| 86 | void GDScriptParser::get_annotation_list(List<MethodInfo> *r_annotations) const { |
| 87 | for (const KeyValue<StringName, AnnotationInfo> &E : valid_annotations) { |
no test coverage detected