Open
Description
Hi.
I'm having an issue with a file being truncated when generated.
the Script# code is like:
namespace A.B.C
{
Public enum foo1{}
Public enum foo2{}
Public Class Foo{}
Public Partial Class FooN: FooA,FooB,FooC
{
//Attributes
//Methods
//Some methods
//#1--------------->
// Before 0.8 the code had the "[AlternateSignature]"
public extern void setFoo(Type newFoo, string text);
public void setFoo(Type newFoo, string text, string text2)
//more methods
}
}
The resultating JS file is being generated untill #1 the rest of the methods and closing '}' are being truncated. The closing ');' of Deinfe are in the resultating file.
Thanks in advance for your help.