typescript-to-lua
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -59,2 +59,3 @@ #!/usr/bin/env node | ||
catch (exception) { | ||
/* istanbul ignore else: Testing else part would require to add a bug/exception to our code */ | ||
if (exception.node) { | ||
@@ -61,0 +62,0 @@ var pos = ts.getLineAndCharacterOfPosition(sourceFile, exception.node.pos); |
@@ -77,3 +77,4 @@ "use strict"; | ||
return type.symbol | ||
&& ((type.symbol.flags & ts.SymbolFlags.Function) !== 0) | ||
&& ((type.symbol.flags & ts.SymbolFlags.Function) !== 0 | ||
|| (type.symbol.flags & ts.SymbolFlags.Method) !== 0) | ||
&& this.hasCustomDecorator(type, checker, "!TupleReturn"); | ||
@@ -80,0 +81,0 @@ }; |
{ | ||
"name": "typescript-to-lua", | ||
"license": "MIT", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"repository": "https://github.com/Perryvw/TypescriptToLua", | ||
@@ -6,0 +6,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
91420
1762