Merge branch 'main' into clean-tests

This commit is contained in:
Rasmus Wriedt Larsen
2023-11-16 11:21:01 +01:00
115 changed files with 1999 additions and 1059 deletions

View File

@@ -20,6 +20,8 @@ builtins.open(file="file") # $ getAPathArgument="file"
io.open("file") # $ getAPathArgument="file"
io.open(file="file") # $ getAPathArgument="file"
io.open_code("file") # $ getAPathArgument="file"
io.FileIO("file") # $ getAPathArgument="file"
f = open("path") # $ getAPathArgument="path"
f.write("foo") # $ getAPathArgument="path" fileWriteData="foo"