GDScript: Fix typing of iterator in for loop

This commit is contained in:
Dmitrii Maganov
2023-01-12 20:18:23 +02:00
parent 3c9bf4bc21
commit 40613ebd21
24 changed files with 204 additions and 14 deletions
@@ -0,0 +1,6 @@
const constant_float = 1.0
func test():
for x in constant_float:
if x is String:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "float" so it can't be of type "String".
@@ -0,0 +1,6 @@
const constant_int = 1
func test():
for x in constant_int:
if x is String:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "int" so it can't be of type "String".
@@ -0,0 +1,6 @@
enum { enum_value = 1 }
func test():
for x in enum_value:
if x is String:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "int" so it can't be of type "String".
@@ -0,0 +1,6 @@
func test():
var hard_float := 1.0
for x in hard_float:
if x is String:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "float" so it can't be of type "String".
@@ -0,0 +1,6 @@
func test():
var hard_int := 1
for x in hard_int:
if x is String:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "int" so it can't be of type "String".
@@ -0,0 +1,14 @@
class Iterator:
func _iter_init(_count):
return true
func _iter_next(_count):
return false
func _iter_get(_count) -> StringName:
return &'custom'
func test():
var hard_iterator := Iterator.new()
for x in hard_iterator:
if x is int:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "StringName" so it can't be of type "int".
@@ -0,0 +1,6 @@
func test():
var hard_string := 'a'
for x in hard_string:
if x is int:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "String" so it can't be of type "int".
@@ -0,0 +1,3 @@
func test():
for x in true:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Unable to iterate on value of type "bool".
@@ -0,0 +1,4 @@
func test():
for x in 1:
if x is String:
pass
@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Expression is of type "int" so it can't be of type "String".