浏览代码

GDScript: Fix infer on read-only property

Dmitrii Maganov 2 年之前
父节点
当前提交
5972ba17a4
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      modules/gdscript/gdscript_analyzer.cpp

+ 1 - 0
modules/gdscript/gdscript_analyzer.cpp

@@ -1742,6 +1742,7 @@ void GDScriptAnalyzer::resolve_assignable(GDScriptParser::AssignableNode *p_assi
 	}
 	}
 
 
 	type.is_constant = is_constant;
 	type.is_constant = is_constant;
+	type.is_read_only = false;
 	p_assignable->set_datatype(type);
 	p_assignable->set_datatype(type);
 }
 }