Source code checked in, #b761f46f3c7fe9c00a646000237e49399ec1b22f
Updates for V8 API changes. V8Update now fetches tested revision by default.
View ArticleReleased: ClearScript 5.3 (May 21, 2013)
5.3.2Updates for breaking V8 API changes. V8Update now fetches a tested revision by default.5.3.1Fixed JScriptEngine dynamic binding bug (Issue #9).5.3.0Enhancements for V8 users:V8ScriptEngine now...
View ArticleUpdated Release: ClearScript 5.3 (May 21, 2013)
5.3.2Updates for breaking V8 API changes.V8Update now fetches a tested revision by default.5.3.1Fixed JScriptEngine dynamic binding bug (Issue #9).5.3.0Enhancements for V8 users: V8ScriptEngine now...
View ArticleUpdated Wiki: Announcements
6/6/2013: Version 5.3.2 released. View the release notes and download the source code here. Due to issues with several recent V8 trunk releases (build failures, breaking API changes, etc.), and because...
View ArticleUpdated Wiki: Announcements
6/6/2013: Version 5.3.2 released. View the release notes and download the source code here. Due to issues with several recent V8 trunk releases (build failures, breaking API changes, etc.), and because...
View ArticleUpdated Wiki: Home
6/6/2013: Version 5.3.2 released. More...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...
View ArticleNew Post: Array as return type
Ive been trying to return an array (or basicly any collection) with strings from C# to V8 and it doesnt work. Is there any way to return a collection to V8 so that the return type becomes a javascript...
View ArticleNew Post: Array as return type
Hi Klator, and thanks for your question! There are several ways to do what you need, and JSON serialization should not be necessary. One thing you could do is access a .NET array directly from...
View ArticleNew Post: Array as return type
Yeah, option 1 is exactly what Ive done. (Or so I think.) This is what I do: public class ElementCollection : List<Element> { [ScriptMember(Name = "text")] public string[] Text() { // Desired...
View ArticleNew Post: Array as return type
Hi Klator, It looks like JSON.stringify() can't work with .NET arrays. Each .NET array has a property named SyncRoot that simply returns the array instance. This makes the array a "circular" object and...
View ArticleNew Post: Array as return type
Aha, I see. I thought Clearscript would handle the conversion from .NET array to javascript array. Yeah, that will work. And, yeah, its dead simple. Thanks. Then again, your solution is dependent on me...
View ArticleNew Post: Array as return type
Yes, for better and worse, ClearScript is all about seamless access rather than conversion :) The idea is that with seamless access, conversion (should you need it) is easy and can be tailored to your...
View ArticleNew Post: Array as return type
Ok. Makes sense. Yeah, that would do the trick. Looks great. Passing engine around is quite painful, then again I have some other objects (logging, statistics) that I also need to pass around, so its...
View ArticleReleased: ClearScript 5.3 (May 21, 2013)
5.3.3Improved V8 error handling (Issue #12). Lowered .NET Framework target to v4.0. Added several tests. Tested with V8 3.19.18.5.3.2Updates for breaking V8 API changes. V8Update now fetches a tested...
View ArticleUpdated Release: ClearScript 5.3 (May 21, 2013)
5.3.3Improved V8 error handling (Issue #12).Lowered .NET Framework target to v4.0.Added several tests.Tested with V8 3.19.18.5.3.2Updates for breaking V8 API changes.V8Update now fetches a tested...
View ArticleUpdated Wiki: Announcements
7/2/2013: Version 5.3.3 released. View the release notes and download the source code here. 6/6/2013: Version 5.3.2 released. View the release notes and download the source code here. Due to issues...
View ArticleUpdated Wiki: Home
7/2/2013: Version 5.3.3 released. More...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...
View ArticleEdited Issue: V8ScriptEngine does not always collect error details [12]
We have reproduced the following:1. V8ScriptEngine collects error details only when the thrown object is an Error instance.2. V8ScriptEngine does not collect error details for syntax errors.
View ArticleCommented Issue: V8ScriptEngine does not always collect error details [12]
We have reproduced the following:1. V8ScriptEngine collects error details only when the thrown object is an Error instance.2. V8ScriptEngine does not collect error details for syntax errors.Comments:...
View ArticleNew Post: Getting V8 compilation error details, and uncaught exceptions stack...
We've posted an update that fixes these issues. Thanks again for your input!
View Article