Closed
Description
Issue to be solved
The runtime/interpreter/value.go
file is huge. Even the GitHub syntax highlighting gets disabled on PR reviews because of the huge size.
Suggested Solution
We should consider splitting the file into different files. A decent split can be:
value_collections.go
value_numbers.go
value_options.go
.. More if needed ..
value_test.go
would have to be split accordingly.