You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 27, 2025. It is now read-only.
I am getting Parser Exception Line Numbers wrongly.
'use strict';
var mainScript = {
whileApplicationRunTimer: 1000
whileApplicationRun: function () {
},
onApplicationUnload: function () {
}
};
, is missing in Line 3 but Exception gives the line no as Line 4 Column 1.
My C# code
try
{
var ctx = new IronJS.Hosting.CSharp.Context();
ctx.Execute(richTextBox1.Text);
}
catch (Exception ex)
{
}
Please let me know is their any issue with my implementation.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I am getting Parser Exception Line Numbers wrongly.
'use strict';
var mainScript = {
whileApplicationRunTimer: 1000
whileApplicationRun: function () {
},
onApplicationUnload: function () {
}
};
, is missing in Line 3 but Exception gives the line no as Line 4 Column 1.
My C# code
try
{
var ctx = new IronJS.Hosting.CSharp.Context();
ctx.Execute(richTextBox1.Text);
}
catch (Exception ex)
{
}
Please let me know is their any issue with my implementation.
The text was updated successfully, but these errors were encountered: