AS3toTypeScript icon indicating copy to clipboard operation
AS3toTypeScript copied to clipboard

AS3 to TypeScript Convertor

Results 2 AS3toTypeScript issues
Sort by recently updated
recently updated
newest added

typescript compiler throw error if we call instance methods without "this" keyword , could please provide this feature in your parser. this.hello(); // only to instance methods alone hello(){ }

ie. "override public " can be "public override " we need to replace all permutations ie. like this: $output = str_replace('override public ', 'public ', $output); $output = str_replace('public override...