Josh Goebel

Results 1688 comments of Josh Goebel
trafficstars

> Naming wren_cli just wren can cause confusions. How so? If there is no `wren` binary and the only way to run Wren from console is the CLI, then I'm...

This is resolved by #71.

This was before the discussion happening in #93. So perhaps it should be understood as a list of "what should CLI be capable of doing" rather than "what all is...

Notes: ``` Process.exec(binary, args) { exec(binary, args, null, null) } , Process.exec(binary, args, cwd) { exec(binary, args, cwd, null) } Process.exec(binary, args, cwd, env) { exec_ ... } ```

I think I know what you mean about tests now... I'd wager the python stuff doesn't understand the *structure* of the Wren code so while you can have the different...

Ruby, `inline` doesn't seem to work for me here: ``` Undefined symbols for architecture x86_64: "_cli_strdup", referenced from: _processExec in os.o ld: symbol(s) not found for architecture x86_64 ``` Removing...

Thoughts/ideas just at a glance: - move `sleep` from timer into scheduler - move version to Wren proper `System.wrenVersion` - `Process.cwd` -> Directory.currentWorking, although this starts to get into how...

> Secondly, it would break a ton of code. I use it all the time (no pun intended). There are solutions to that - deprecating, supporting both for a while,...

> I think Directory.remove and File.delete should be both named Directory.delete and File.delete. to be more consistent. Just curious, why not remove *for both*? This may be a windows vs...