mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #51671 from RandomShaper/fix_gdscript_crash
Fix some GDScript bugs
This commit is contained in:
commit
b8fdeb6467
5 changed files with 62 additions and 15 deletions
|
@ -161,6 +161,10 @@ public:
|
|||
container_element_type = nullptr;
|
||||
}
|
||||
|
||||
bool is_typed_container_type() const;
|
||||
|
||||
GDScriptParser::DataType get_typed_container_type() const;
|
||||
|
||||
bool operator==(const DataType &p_other) const {
|
||||
if (type_source == UNDETECTED || p_other.type_source == UNDETECTED) {
|
||||
return true; // Can be consireded equal for parsing purposes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue