sjbarag / brs

An interpreter for the BrightScript language that runs on non-Roku platforms.
MIT License
114 stars 43 forks source link

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

Open sjbarag opened 3 years ago

sjbarag commented 3 years ago
aa = { "FIELD": 0 }
print aa.keys()

RBI output:

[
    "FIELD"
]

brs output:

[
    "field"
]

_Originally posted by @Vasya-M in https://github.com/sjbarag/brs/pull/599#discussion_r555253683_