Josh Goebel
Josh Goebel
I'd love to explore something like this with a pre-processor. :-) This could be easily done WITHOUT support in core Wren.
Thought: Might be easier to review/read the changes if all the makefile auto-built changes weren't also included?
Ah, true your commit history is indeed very clean. That's not always the case (in general - perhaps it's better here in Wren) and I'm just so accustomed to using...
The `classMirror` that's commented out on methodMirror would be super helpful, I'm trying to get a bit more detail in my stack traces akin to Node (showing both the class...
What your code makes possible. :)
The only thing I needed to add: ```js class StackTrace { frames { _stackTrace } // added ``` For accessing the raw frames so you can process them however you...
So why not? ```js frames { _stackTrace[0..-1] } ```
To me it's just a list of items... once I have it I should be able to alter it, remove items, insert new items, it's MY list.. as long as...
> so one relevant question is what does the npm module actually contain. I was imagining the prebuilt Web Assembly source and to go with that a nice JS API...
> but has a huge drawback of being limited at printing native types only. _No, this code works with user defined classes also._ (I tested it with one) We can...