sjbarag / brs

An interpreter for the BrightScript language that runs on non-Roku platforms.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

roAssociativeArray#keys() returns array of keys with incorrect casing

sjbarag opened this issue · comments

aa = { "FIELD": 0 }
print aa.keys()

RBI output:

[
    "FIELD"
]

brs output:

[
    "field"
]

Originally posted by @Vasya-M in #599 (comment)