Check for parameters shadowing class members
This commit is contained in:
parent
e3a8ab68ce
commit
52781535a3
@ -43,7 +43,7 @@ bool GDScriptCompiler::_is_class_member_property(CodeGen &codegen, const StringN
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (codegen.locals.has(p_name)) {
|
if (codegen.parameters.has(p_name) || codegen.locals.has(p_name)) {
|
||||||
return false; //shadowed
|
return false; //shadowed
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user