GDScript: add variable shadowing warning

(cherry picked from commit 14078fbb82)
This commit is contained in:
lupoDharkael
2019-04-15 15:51:52 +02:00
committed by Rémi Verschelde
parent 66c1b8adc4
commit ad1e8069d3
3 changed files with 22 additions and 0 deletions

View File

@@ -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