Commented Issue: New V8 debug agent fails in ASP.NET projects [75]
This issue has to do with the DispatchDebugMessages path, which attempts to invoke a managed method on a C++ Concurrency Runtime worker thread.That seems to work in desktop applications, but it throws...
View ArticleEdited Issue: Ambiguity when passing null to overloaded methods [72]
Hi, I'm having another issue with passing null to overloaded methods. Here's code sample.``` public class SimpleObject{ public string Name { get; set; } public string GetName(){ return null;}} public...
View ArticleCommented Issue: Ambiguity when passing null to overloaded methods [72]
Hi, I'm having another issue with passing null to overloaded methods. Here's code sample.``` public class SimpleObject{ public string Name { get; set; } public string GetName(){ return null;}} public...
View ArticleEdited Issue: Restricted access to non-public accessors of public properties...
Hi, I'm having an issue with exposed host object which has a property with public getter and private setter.For example, I can put a script like "SomeObject.Name = ...". Is there a way to prevent...
View ArticleCommented Issue: Restricted access to non-public accessors of public...
Hi, I'm having an issue with exposed host object which has a property with public getter and private setter.For example, I can put a script like "SomeObject.Name = ...". Is there a way to prevent...
View ArticleEdited Feature: Enable simplified syntax for accessing default members [50]
ClearScript doesn't provide any syntactic shortcuts for accessing default members.This is particularly noticeable with indexers, which currently must be accessed by name. For example, host dictionary...
View ArticleCommented Feature: Enable simplified syntax for accessing default members [50]
ClearScript doesn't provide any syntactic shortcuts for accessing default members.This is particularly noticeable with indexers, which currently must be accessed by name. For example, host dictionary...
View ArticleNew Post: Passing Action/Func into JS?
Hi again, If you're using V8, consider upgrading to the just-released ClearScript 5.4.2, which provides a new toFunction method for delegates. This method creates a native JavaScript function that...
View ArticleNew Post: Display progress when script is executing...
Hi, Firstly, I should congratulate on this wonderful project. Among all V8 .NET projects that I have come across this seems the best. Easy to use, feature rich and most usage scenarios are explained in...
View ArticleNew Post: using v8 with c#.net : compile javascript and know for any possible...
I am using C# .Net, ClearScript for v8 JavaScript work. I need to check for possible errors (whatever possible) in javascript before i execute it. I have checked that there are [.Compile], [.Execute]...
View ArticleNew Post: using v8 with c#.net : compile javascript and know for any possible...
Hi RavinWorx, Consider using a JavaScript parsing library. Esprima is one that's written in JavaScript. Edit: Note that a parsing library is useful if you need to perform semantic analysis of any kind....
View ArticleNew Post: Display progress when script is executing...
Hi Ram, Thank you very much for the positive feedback! Unfortunately none of the script engines supported by ClearScript appear to provide the sort of notifications you're looking for. V8 has several...
View ArticleNew Post: how to call c# member function from JavaScript with named...
how to call c# member function from JavaScript with named parameter. what should i do// i want my JavaScript Code will be something like this // By this script i want to call c# method with named...
View ArticleNew Post: Display progress when script is executing...
Thanks for your reply... This is a very critical requirement for us. The javascript itself is written by a different class of users of the program and hence would be considered cumbersome for them to...
View ArticleNew Post: Named parameter support
Hi, Does clearscript using V8 engine support named parameters? C# supports named params. So also ECMAScript 6 and JavaScript in new version of browsers. Can I get this capability in clearscript?...
View ArticleCreated Feature: Support for specifying host method arguments by name [80]
Neither JavaScript nor VBScript have native support for named arguments, but some way to specify host method arguments by name might be useful.
View ArticleNew Post: how to call c# member function from JavaScript with named...
ClearScript currently has no built-in support for specifying host method arguments by name. This is a feature we're tracking here.
View ArticleNew Post: Named parameter support
Hi Ram, ClearScript currently has no built-in support for specifying host method arguments by name. This is a feature we're tracking here. Note that JavaScript doesn't have native syntax for named...
View ArticleNew Post: Display progress when script is executing...
Hello Ram, Interception is the mechanism that allows JavaScript code running in V8 to invoke host methods and properties. The code that implements those methods and properties is free to examine the...
View ArticleCreated Unassigned: Support for Chakra.dll (Edge engine) [81]
Any thoughts about supporting the Edge JS engine?
View Article