Created Feature: Generic binding hook [77]
A way for the client to hook into the member binding process might be a useful addition to ClearScript. It would allow the client to transform member names, modify argument lists, secure access to...
View ArticleNew Post: Global camel case support
Hello uberclops, ClearScript 5.4.2 will allow you to specify ScriptAccess defaults at the type and assembly levels. We're tracking the generic binding hook feature here. Thanks!
View ArticleCreated Unassigned: Official Microsoft.ClearScript{,.V8} nuget packages [78]
I had assumed that https://www.nuget.org/packages/ClearScript.V8/ and https://www.nuget.org/packages/ClearScript/ were official packages, but on closer inspection they’re obviously not published by...
View ArticleCommented Unassigned: Official Microsoft.ClearScript{,.V8} nuget packages [78]
I had assumed that https://www.nuget.org/packages/ClearScript.V8/ and https://www.nuget.org/packages/ClearScript/ were official packages, but on closer inspection they’re obviously not published by...
View ArticleClosed Unassigned: Official Microsoft.ClearScript{,.V8} nuget packages [78]
I had assumed that https://www.nuget.org/packages/ClearScript.V8/ and https://www.nuget.org/packages/ClearScript/ were official packages, but on closer inspection they’re obviously not published by...
View ArticleEdited Feature: Official Microsoft.ClearScript{,.V8} nuget packages [78]
I had assumed that https://www.nuget.org/packages/ClearScript.V8/ and https://www.nuget.org/packages/ClearScript/ were official packages, but on closer inspection they’re obviously not published by...
View ArticleReopened Issue: ado com error 0x80070018 [76]
I am attempting to build a vbscript interface through clearscript that can execute ado queries.I am testing the scalability of executing a large amount of tests, and am finding that I receive an error...
View ArticleEdited Issue: ado com error 0x80070018 [76]
I am attempting to build a vbscript interface through clearscript that can execute ado queries.I am testing the scalability of executing a large amount of tests, and am finding that I receive an error...
View ArticleCommented Issue: ado com error 0x80070018 [76]
I am attempting to build a vbscript interface through clearscript that can execute ado queries.I am testing the scalability of executing a large amount of tests, and am finding that I receive an error...
View ArticleNew Post: Returning syntax error location
While working on a testing framework that executes JavaScript tests, I wanted to have ClearScript tell me the location of the syntax errors it found. It doesn't. This is in a non-browser environment. I...
View ArticleNew Post: Returning syntax error location
Hello! If the stack trace can be retrieved successfully, there should be no need to also retrieve the location string, because the former is a superset of the latter. For example, here's a sample stack...
View ArticleNew Post: Returning syntax error location
Well, in our case, it did not work that way!We are using Node.js code to ‘require’ our scripts as in the following stack trace:ScriptEngineException Error loading module /NativeModeApi.js: Syntax...
View ArticleNew Post: Returning syntax error location
Hi again, Is executeModule a .NET method? If so, does it re-enter the script engine internally? Thanks!
View ArticleNew Post: Returning syntax error location
Yes, it is a .Net method and yes, it re-enters the script engine.
View ArticleNew Post: Returning syntax error location
Hi, I just wanted to chime in here. I am the colleague that pblattnerjr mentions above. We have exposed a .NET global object through ClearScript which contains a method which loads the contents of a...
View ArticleNew Post: Returning syntax error location
Hello, Thanks for describing your scenario. You're right, it does appear that a syntax error occurring in a nested invocation of the script engine can have a stack trace as well as a useful location...
View ArticleNew Post: Passing Action/Func into JS?
Thanks - no I'm doing that. But the problem is I'm passing it to EventEmitter's on() method, which throws if it's not a function. So I guess I'll write a wrapper of some sort. Hopefully apply works...
View ArticleNew Post: How does ClearScript choose which dlls to use? (x32 or x64)
I'm using ClearScript with the V8 engine and I'm noticing that it's always using the x32 dlls ClearScriptV8-32.dll and v8-ia32.dll. These also require the VC++ redistributable package for x86 machines....
View ArticleNew Post: How does ClearScript choose which dlls to use? (x32 or x64)
Hi Eniko, ClearScript's main assembly (ClearScript.dll) is AnyCPU and can therefore be loaded into any kind of process. However, because V8 and ClearScript's V8 interface contain native code, they...
View Article