summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/warnings
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2023-01-18 22:56:00 -0300
committerGeorge Marques <george@gmarqu.es>2023-01-21 13:39:40 -0300
commit7548e043fce1211e21030bb41c6fe6d6900a7a5a (patch)
tree4c9284d244a5586dd490dc9bb40b8017b289b584 /modules/gdscript/tests/scripts/analyzer/warnings
parent2ec0da1a75a066fe88986fc6ceda22fbabf7eedd (diff)
Add support for Unicode identifiers in GDScript
This is using an adapted version of UAX#31 to not rely on the ICU database (which isn't available in builds without TextServerAdvanced). It allows most characters used in diverse scripts but not everything.
Diffstat (limited to 'modules/gdscript/tests/scripts/analyzer/warnings')
-rw-r--r--modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.out b/modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.out
index b018091c18..32e230fc80 100644
--- a/modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.out
+++ b/modules/gdscript/tests/scripts/analyzer/warnings/lambda_unused_arg.out
@@ -2,4 +2,4 @@ GDTEST_OK
>> WARNING
>> Line: 2
>> UNUSED_PARAMETER
->>
+>> The parameter 'unused' is never used in the function ''. If this is intended, prefix it with an underscore: '_unused'