GDScript: add variable shadowing warning
This commit is contained in:
parent
0d87535dd7
commit
14078fbb82
3 changed files with 22 additions and 0 deletions
|
|
@ -273,6 +273,7 @@ struct GDScriptWarning {
|
|||
UNASSIGNED_VARIABLE, // Variable used but never assigned
|
||||
UNASSIGNED_VARIABLE_OP_ASSIGN, // Variable never assigned but used in an assignment operation (+=, *=, etc)
|
||||
UNUSED_VARIABLE, // Local variable is declared but never used
|
||||
SHADOWED_VARIABLE, // Variable name shadowed by other variable
|
||||
UNUSED_CLASS_VARIABLE, // Class variable is declared but never used in the file
|
||||
UNUSED_ARGUMENT, // Function argument is never used
|
||||
UNREACHABLE_CODE, // Code after a return statement
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue