New Post: Problem building the 5.4.7 in the v8 32 bit step
Updating VS to update 5 seems to have solved the problem, and I encountered no problems when compiling with the updated version. Seems a little strange to me, that the update could have such a big...
View ArticleNew Post: Calling a JS Function from a script that has been exectued
It is the same instance, but I think I've found the issue. The prior execute is failing, because for some reason it's throwing a missing ; error during the execute (compiling pretty common JS code,...
View ArticleNew Post: Problem building the 5.4.7 in the v8 32 bit step
That's great to hear. Thanks!
View ArticleNew Post: V8 Null Pointer crash when using "for (let a of hostObj)"
In my application, the following code works for two successive calls but then causes a null pointer crash in v8-x64.dll during the third call:function volumeOperation(choiceResults) { for (let c of...
View ArticleNew Post: Clearscript support for ES6
Does Clearscript V8 script engine support javascript ES6. Thanks Praveen
View ArticleCreated Unassigned: Doesn't Run on Linux [111]
I recently installed Mono and tried to get ClearScript to run. It doesn't. The CLR ends up looking for "kernel32," which is a native DLL and not available on Mono.For other libraries, the prescribed...
View ArticleNew Post: V8 Null Pointer crash when using "for (let a of hostObj)"
Hi Mike, Thanks for reporting this. It appears to be due to a bug in V8's optimization or JIT compilation logic. Luckily it's easy to work around. We'll post a fix shortly. Thanks again!
View ArticleNew Post: Clearscript support for ES6
Hi Praveen, We don't test ClearScript's JavaScript engines for full ES6 support. However, according to this blog post, V8 supports ES6 and ES7 as of stable version 5.2. ClearScript's latest release...
View ArticleCommented Unassigned: Doesn't Run on Linux [111]
I recently installed Mono and tried to get ClearScript to run. It doesn't. The CLR ends up looking for "kernel32," which is a native DLL and not available on Mono.For other libraries, the prescribed...
View ArticleEdited Feature: Doesn't Run on Linux [111]
I recently installed Mono and tried to get ClearScript to run. It doesn't. The CLR ends up looking for "kernel32," which is a native DLL and not available on Mono.For other libraries, the prescribed...
View ArticleClosed Feature: Doesn't Run on Linux [111]
I recently installed Mono and tried to get ClearScript to run. It doesn't. The CLR ends up looking for "kernel32," which is a native DLL and not available on Mono.For other libraries, the prescribed...
View ArticleNew Post: Host Function that returns dynamic object
Dear, I am trying to access properties from a dynamic object that is returned from a c# call. Example JS:var xml = api.MyHostFunction(); var productId = xml.ProductId; This is the prototype for...
View ArticleNew Post: Host Function that returns dynamic object
Hello! What kind of object does MyHostFunction actually return? Also, are you using V8 or JScript? Thanks!
View ArticleNew Post: Host Function that returns dynamic object
Hi! Thank you for the prompt reply. The object is typeof(dynamic). That function makes a call to my WebServer and retrieves a XML document. This XML document can be a lot of different things, so to...
View ArticleNew Post: Host Function that returns dynamic object
Hi again, For this to work, your object must implement GetDynamicMemberNames in addition to TryGetMember et al. Good luck!
View ArticleNew Post: Host Function that returns dynamic object
Great! Implementing this method worked. I will paste it here for future reference:public class DynamicXml : DynamicObject, IEnumerable { private readonly List<XElement> _elements; public...
View ArticleCreated Unassigned: Crash when calling Interrupt() at bad time [112]
Hello,we are having issues with a portion of code that basically provokes an exception in user code called by clearscript, and then calls Interrupt on the V8 engine.It always crashes. Isn't this...
View ArticleEdited Issue: [BUG] Crash when calling Interrupt() at bad time [112]
Hello,we are having issues with a portion of code that basically provokes an exception in user code called by clearscript, and then calls Interrupt on the V8 engine.It always crashes. Isn't this...
View ArticleCommented Issue: [BUG] Crash when calling Interrupt() at bad time [112]
Hello,we are having issues with a portion of code that basically provokes an exception in user code called by clearscript, and then calls Interrupt on the V8 engine.It always crashes. Isn't this...
View ArticleCommented Feature: [FEATURE] Support for .Net CoreClr [99]
I'm not sure how feasible this is considering dependencies like V8 but it would be great to have even partial support for [.Net CoreClr](https://github.com/dotnet/coreclr) Comments: It would be great :)
View Article