Commits
Click on a commit to change the comparison rangedisambiguate empty sets from empty maps
according to the grammar, `{}` could either mean *empty set* or *empty map*. Due to how the parser was written, it was always an empty set, and there was no way to have an empty map literal.
This is an issue because empty maps would still be displayed as `{}`, and maps have a different api than sets, resulting in evaluation errors.
This commit introduces `{,}` as the empty set literal, while `{}` is the empty map. The goal here is to be consistent with JSON, the reason why we chose the current syntax for arrays and maps. bump runtime limits due to slow github actions workers remove dead code, uncomment tests REMOVEME: bump default duration during tests