lvcabral/brs-engine

Literal integers are not boxed to execute methods

lvcabral opened this issue · 1 comments

The autoboxing works with String but not with Integer:

image

It seems it is being interpreter as a float 1. and not as an integer with the method, because this works:

print 1..toStr()
1

in Roku it works:
image