What does this mean?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By System_Error

Hi all.

I was working on one of the scripts in my game when I noticed that the Output had a little red circle by it. I was wondering what this (read below) meant.

modules/gdscript/gdscript_tokenizer.cpp:1078 - Condition ’ tk_rb[ofs].type != TK_IDENTIFIER ’ is true. returned: StringName()

Is everything running OK? It might be an engine issue that isn’t actually critical.

Eric Ellingson | 2019-10-28 17:20

:bust_in_silhouette: Reply From: arkountos

For me the problem was that I was trying to write a for loop with parentheses like so:

for (item in my_list):

After changing to the correct syntax:

for item in my_list:

The problem was gone!

:bust_in_silhouette: Reply From: Awxen

I seemed to be getting this error by having ‘null’ as an parameter in a function.