Edited Issue: [FIXED] Memory leak with shared V8 runtimes [107]
Repeated calls to `V8Runtime.CreateScriptEngine` make the runtime's heap grow even if the engine instances are disposed immediately. This is because the `V8ContextImpl` destructor neglects to to...
View ArticleCommented Issue: [FIXED] Memory leak with shared V8 runtimes [107]
Repeated calls to `V8Runtime.CreateScriptEngine` make the runtime's heap grow even if the engine instances are disposed immediately. This is because the `V8ContextImpl` destructor neglects to to...
View ArticleSource code checked in, #41036a3cb82a71fc009664ccc9609767bead5aea
Fixed memory leak with shared V8 runtimes (Issue #107).
View ArticleCommented Unassigned: cross-engine nested exception fault [108]
got one more cross-engine issue.an error raised by scriptengine (b) which was invoked by another scriptengine (a), doesn't make it to scriptengine (a) and properly back to the origin calle in the...
View ArticleEdited Issue: [BUG] Double execution of cross-engine VBScript calls that...
got one more cross-engine issue.an error raised by scriptengine (b) which was invoked by another scriptengine (a), doesn't make it to scriptengine (a) and properly back to the origin calle in the...
View ArticleCommented Issue: [BUG] Double execution of cross-engine VBScript calls that...
got one more cross-engine issue.an error raised by scriptengine (b) which was invoked by another scriptengine (a), doesn't make it to scriptengine (a) and properly back to the origin calle in the...
View ArticleCommented Issue: [BUG] Double execution of cross-engine VBScript calls that...
got one more cross-engine issue.an error raised by scriptengine (b) which was invoked by another scriptengine (a), doesn't make it to scriptengine (a) and properly back to the origin calle in the...
View ArticleNew Post: Header format for V8 debugger
Dear ClearScript team, I've been dabbling latey with node-inspector to see what would be needed to adapt ClearScript to work with it - aside from some global services, it looks like the header format...
View ArticleNew Post: Header format for V8 debugger
Hello! We'll be happy to adjust the header as long as it doesn't break the Eclipse debugger. Can you detail the changes you made to enable node-inspector? Thanks!
View ArticleNew Post: Header format for V8 debugger
Hi, for the moment I haven't changed anything in ClearScript, opting to modify che node debugger instead (that would be, just removing the whitespace in the regular expression here...
View ArticleCommented Issue: [FIXED] Memory leak with shared V8 runtimes [107]
Repeated calls to `V8Runtime.CreateScriptEngine` make the runtime's heap grow even if the engine instances are disposed immediately. This is because the `V8ContextImpl` destructor neglects to to...
View ArticleCommented Issue: [FIXED] Memory leak with shared V8 runtimes [107]
Repeated calls to `V8Runtime.CreateScriptEngine` make the runtime's heap grow even if the engine instances are disposed immediately. This is because the `V8ContextImpl` destructor neglects to to...
View ArticleCommented Issue: [FIXED] Memory leak with shared V8 runtimes [107]
Repeated calls to `V8Runtime.CreateScriptEngine` make the runtime's heap grow even if the engine instances are disposed immediately. This is because the `V8ContextImpl` destructor neglects to to...
View ArticleNew Post: Header format for V8 debugger
Hi guys, so, I can confirm that it is possible to connect with node-inspector by adding a space after the colons in the header transmission message, and providing (very simple) "process" and "global"...
View ArticleNew Post: Header format for V8 debugger
Thank you very much for the details! We'll test these changes with Eclipse, and if all goes well, we'll include them in the next point release. Thanks again!
View ArticleNew Post: Pass Javascript Object with Array to the host
Here is my code:using System; using Microsoft.ClearScript.V8; using Newtonsoft.Json; namespace ConsoleApplication { public class Test { public void Output(object o) {...
View ArticleNew Post: Pass Javascript Object with Array to the host
Hello! ClearScript doesn't convert script arrays to host arrays automatically. Instead, it lets you access script arrays directly from the host, and vice versa. Can you say more about your...
View ArticleNew Post: Pass Javascript Object with Array to the host
Thanks! My requirement can be simplified like my example above, i want to expose Test.Output for the script side to output some debug information. So I can pass any json object to the Test.Output, so...
View ArticleNew Post: Pass Javascript Object with Array to the host
Hi again, One thing you could do is modify your Test class so that it converts arrays before passing them to Json.NET:publicclass Test { privatereadonly V8Converter v8Converter = new V8Converter();...
View Article