The `.list` method on Sequence was renamed to `.toList` to better reflect its purpose of converting a sequence into a List object. This change updates the method definition in `builtin/core.wren` and `src/vm/wren_core.c`, along with all test files that called `.list` on sequences, maps, ranges, and custom sequence implementations. The test file `test/core/sequence/list.wren` was also renamed to `test/core/sequence/to_list.wren` to match the new method name.
The Wren scripts in this directory get converted to C string literals and then inserted into their respective .c files so that the interpreter can load them directly without having to do any file IO.
The script that does this copying is script/generate_builtins.py.
You can invoke using make builtin.