Merge pull request #39275 from ThakeeNathees/shadowed-warning-for-loop-counter
Added shadowed var warning for `for` loop counter
This commit is contained in:
commit
697897cc61
1 changed files with 7 additions and 0 deletions
|
@ -3180,6 +3180,13 @@ void GDScriptParser::_parse_block(BlockNode *p_block, bool p_static) {
|
||||||
|
|
||||||
IdentifierNode *id = alloc_node<IdentifierNode>();
|
IdentifierNode *id = alloc_node<IdentifierNode>();
|
||||||
id->name = tokenizer->get_token_identifier();
|
id->name = tokenizer->get_token_identifier();
|
||||||
|
#ifdef DEBUG_ENABLED
|
||||||
|
for (int j = 0; j < current_class->variables.size(); j++) {
|
||||||
|
if (current_class->variables[j].identifier == id->name) {
|
||||||
|
_add_warning(GDScriptWarning::SHADOWED_VARIABLE, id->line, id->name, itos(current_class->variables[j].line));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif // DEBUG_ENABLED
|
||||||
|
|
||||||
BlockNode *check_block = p_block;
|
BlockNode *check_block = p_block;
|
||||||
while (check_block) {
|
while (check_block) {
|
||||||
|
|
Loading…
Reference in a new issue