IronJS icon indicating copy to clipboard operation
IronJS copied to clipboard

IronJS - A JavaScript implementation for .NET

Results 52 IronJS issues
Sort by recently updated
recently updated
newest added

Hi, I am getting Parser Exception Line Numbers wrongly. 'use strict'; var mainScript = { whileApplicationRunTimer: 1000 whileApplicationRun: function () { }, onApplicationUnload: function () { } }; , is...

Hello i have a question. is possibile for IronJS after loaded file type LUA, call same script for example in while and increment variabile contains in the script? example C#...

I want to have a JavaScript runtime on devices that run on Win CE that has .NET compact framework installed. I need this to run server side javascript on win...

[Irony](http://irony.codeplex.com/) is an interesting library for implementing languages on the .NET platform. For its description: > Unlike most existing yacc/lex-style solutions Irony does not employ any scanner or parser code...

I am attempting to extend my C# application with JavaScript using IronJS. I have a set of custom C# objects. I supply these objects as inputs to a JavaScript function....

I have a project, in which I used released version found on Nuget, your released library references FSharp.Core 4.0.0.0 however along with .NET 4.5 FSharp.Core version is 4.0.3.0 and this...

Specification Section **15.9**

Change Request
ECMAScript 5

If I pass an XmlDocument or XmlNode from C#, how can I get the results back? Here is the code: ``` var ctx = new IronJS.Hosting.CSharp.Context(); string js = @"...

This code seems to fail: Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("fi-FI"); var ctx = new IronJS.Hosting.CSharp.Context(); ctx.SetGlobal("decimalVal", 1.5m); Assert.True(ctx.Execute("decimalVal < 3"), "1.5 should be smaller"); Works ok if the CurrentCulture is something like...