- Improve error handling on missing imports (#119)
- Add button to VAB (#121)
- Note: Most binding are still untested for VAB
- Fix: Handle line comments in record creation (#113)
- Add helper methods to string (#123):
index_of
:"abcdefgh".index_of("g") == 6
or"abcdefghabcdefgh".index_of("g", 7) == 14
slice
:"abcdefgh".slice(3) == "defgh"
or"abcdefgh".slice(3, 5) == "de"
replace
:"abcdefgh".replace("de", "en") == "abcenfgh"
split
:"a,b,c,de,fgh".split(",") == ["a", "b", "c", "de", "fgh"]