bscotch / stitch

Tools and apps for GameMaker development: a CLI for pipeline development, a VSCode extension for coding, and more.
Other
119 stars 13 forks source link

When variables are used inside accessors they do not get references #90

Closed adam-coster closed 1 year ago

adam-coster commented 1 year ago

For example:

for(var i=0; i<array_length(my_array); i++){
  my_array[i] // <- `i` here shows up as the array type and does not include a reference
}