Open matt-curtis opened 9 years ago
The CocoaScript preprocessor sometimes incorrectly parses brackets. For example, an error is thrown on items[itemNames[i]]. Probably because it becomes items.itemsNames([i])?
items[itemNames[i]]
items.itemsNames([i])
The CocoaScript preprocessor sometimes incorrectly parses brackets. For example, an error is thrown on
items[itemNames[i]]
. Probably because it becomesitems.itemsNames([i])
?