paulbartrum
paulbartrum
I recently rewrote how scoped variables work. If you have a reference to the current RuntimeScope you can just call `runtimeScope.GetValue(variableName)`. Unfortunately there can be many scope instances in a...
@lsim I did a fix for the lodash symbol issue, it's in version 3.2.4.
> I seem to have successfully upgraded to 2.3.6. 🎉 You mean 3.2.6? Great 👍 > I'm now trying to figure out how to get a reference to the current...
That makes sense. Unfortunately I haven't made this easy. There's a few options but none of them are particularly nice: 1) Build your own private copy of Jurassic. Then you...
I'll leave this open, but I won't merge it until after subclassing is implemented.
There's already a construct in javascript for doing async function calls -- a class called `Promise`. I'm not sure exactly what you are trying to do, however, so I can't...
I haven't tested on Mono. I may do that at some point, but in the meantime, have you considered using [Jint](/sebastienros/jint) instead?
Hmm, I'm only using the `IgnoreCase`, `Multiline` and `Compiled` flag, all of which should be allowed in conjunction with `ECMAScript` flag. Weird.
I've checked in a fix for this issue. I copied most of your code, so thanks for that. I didn't copy `GenerateInternalCode` or `WrapGeneratedDelegate` though, 'cause I wasn't sure what...
Ah, you're right, I missed the `try-finally` case. Thanks, I'll look into that. If I seem a bit hesitant about some of these changes, it's because I'm doubtful it can...