Edited Feature: V8ScriptEngine does not support stack limits [26]
Hi there,I'm trying to evaluate how ClearScript's V8 implementation works when it comes to scripts that could contain issues of any kind. One particular case led me to running a script that contains...
View ArticleCommented Feature: V8ScriptEngine does not support stack limits [26]
Hi there,I'm trying to evaluate how ClearScript's V8 implementation works when it comes to scripts that could contain issues of any kind. One particular case led me to running a script that contains...
View ArticleEdited Unassigned: Overload resolution not working with indexed property [25]
When an class have overloaded indexed property,overload resolution with the property does not work.class definition (C#)```public class MyDictionary{ public Object this[Int32 index]{ get { return...
View ArticleCommented Unassigned: Overload resolution not working with indexed property [25]
When an class have overloaded indexed property,overload resolution with the property does not work.class definition (C#)```public class MyDictionary{ public Object this[Int32 index]{ get { return...
View ArticleNew Post: access private fields of base class
Is it possible to get & set private fields of base class. Currently unable to get the fields of base class even after casting the object to base. But able to get private fields of derived class...
View ArticleNew Post: access private fields of base class
Greetings jnair, and thanks for your question! Unfortunately ClearScript doesn't have a complete solution for private member access. As you've discovered, PrivateAccess only goes so far, and casting...
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
Hello! Tell me how to add the ClearScript.V8 assemblies into Global Assembly Cache?
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
Greetings! ClearScript currently does not support the GAC. Its assemblies don't have keys or strong names, and its V8 assembly loading algorithm (see here) is incompatible with GAC deployment. Given...
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
I have two questions:It possible in the future make loading of V8 assemblies like NSass?It possible embed v8-ia32.dll into ClearScriptV8-32.dll, and v8-x64.dll into ClearScriptV8-64.dll (like Noesis...
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
Hi Taritsyn,It possible in the future make loading of V8 assemblies like NSass? It looks like you're asking about an assembly resolver, which certainly seems like a viable alternative loading strategy....
View ArticleCommented Feature: V8ScriptEngine does not support stack limits [26]
Hi there,I'm trying to evaluate how ClearScript's V8 implementation works when it comes to scripts that could contain issues of any kind. One particular case led me to running a script that contains...
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
Hello! I use JavaScript engines in most modules of my open-source library - Bundle Transformer. JavaScript engines are used not directly, but through the wrapper – JavaScriptEngineSwitcher. Currently,...
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
Hi Taritsyn, We're not ASP.NET or CMS experts here, so please bear with us. Bundle Transformer is used in the web projects of various types, including ASP.NET Web Pages sites. In ASP.NET Web Pages...
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
Our normal recommendation for ASP.NET projects is to add the V8 and ClearScriptV8 assemblies as content files at the root of the web application, where the V8Proxy loader looks for them. We've used...
View ArticleNew Post: How to add the ClearScript.V8 assemblies into GAC
Hi Taritsyn, It seems to me that this is not correct. It is suitable for WebMatrix sites, but not for ASP.NET web applications. We've received confirmation from others (e.g., here, here, and here)...
View ArticleCommented Feature: V8ScriptEngine does not support stack limits [26]
Hi there,I'm trying to evaluate how ClearScript's V8 implementation works when it comes to scripts that could contain issues of any kind. One particular case led me to running a script that contains...
View ArticleCommented Unassigned: ClearScript not finding function added dynamically to...
ClearScript apparently can't find a function added dynamically to the window object.In a regular html file, I can call "var passwordAnalysis = zxcvbn($(this).val(), penalties);" just fine.However, I am...
View ArticleEdited Unassigned: ClearScript not finding function added dynamically to...
ClearScript apparently can't find a function added dynamically to the window object.In a regular html file, I can call "var passwordAnalysis = zxcvbn($(this).val(), penalties);" just fine.However, I am...
View ArticleCommented Unassigned: ClearScript not finding function added dynamically to...
ClearScript apparently can't find a function added dynamically to the window object.In a regular html file, I can call "var passwordAnalysis = zxcvbn($(this).val(), penalties);" just fine.However, I am...
View ArticleUpdated Wiki: Home
Description ClearScript is a library that makes it easy to add scripting to your .NET applications. It currently supports JavaScript (via V8 and JScript) and VBScript.FeaturesSimple usage; create a...
View Article