jurassic
jurassic copied to clipboard
A .NET library to parse and execute JavaScript code.
Is there any way to list or otherwise access variables bound in the current functional scope when javascript calls back to C#? This would be beneficial for people wanting to...
Template of literals is very slow, there is no capture operations are very slow. I'm sorry, my english not so good, I was blocked when using " template of literals...
Hi Paul, I've just upgraded to the latest version of Jurassic (3.2.4) and have found that EnableDebugging has been removed from the ScriptEngine Interface. Has debugging of scripts been removed...
It appears that PushStackFrame (ScriptEngine.cs:1350) is causing heap allocations, as StackFrame is a class and not a struct. Is it possible to make it a struct, or use object pooling...
Hello, Paul! If you run the following console application by using the latest version of Jurassic ([2f1eb7b](https://github.com/paulbartrum/jurassic/commit/2f1eb7b25d3601edcfbc09e6f3c31a53641d80e4)): ```csharp using System; using Jurassic; using Jurassic.Library; namespace TestJurassicJavaScriptException { class Program {...
What about android js support , i can it use with my project? I wanna add modding in other programming language, because Asset Bundle not give perfomance develop.
I think this means using VSCode to compile TS to JS, and then using this library to compile JS to CIL. But I’m not sure how to put those two...
Hi, I have two different class nested class ``` public class FeedKeywordProxy { private int workspaceId; private KeywordProxy keyword; } ``` and ``` public class ScriptableKeywords { public FeedKeywordProxy[] keywords...
Hi, I'm going to load a module below: `var lunrMutable = require('lunr-mutable-indexes');` But I don't know how to load this module correctly. My steps is load a single file /lunr-mutable-indexes/lunr-mutable.js...
When i am trying to execute a file of javascript, i am getting following error as it is containing a class. for other files which only contains functions it is...