Josh Goebel

Results 1673 comments of Josh Goebel
trafficstars

Bash had the same behavior. If you find a simpler reproducible test case that doesn't require filling a disk, let me know. Otherwise I'll probably focus on some of the...

Does just calling Stdout.flush() from your script with the patch in PR https://github.com/wren-lang/wren-cli/pull/68 produce the results you want?

Thanks for the very detailed write-up. :-) > calling Stdout.flush() an the end of wren cli's main program would definitely be a good idea and eliminate the largest problem. Did...

Are there standard errors codes for situations like this?

Could you please add a tiny illustration with the layout of where all these files are on your file system or provide a sample Git project that reproduces the issue?...

FYI: This is because the file imports are resolved one at a time and the path resolution of a parent file doesn't have any effects on the path resolution of...

I'd be happy to take this one if we could agree that the resolver code itself could be written in Wren (not C). I have a test branch already (for...

Ok, this is harder than it sounds because you need to change both the resolver and the loader to be smarter. I may have been conflating/mixing them a bit before....

If `foo/foo` is ugly we could also consider: ```dart import "foo/" for Foo // loads Foo from foo/foo ``` No repeating, AND explicit. Or introduce a new syntax that has...