ts-structure-parser
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -336,2 +336,5 @@ /** | ||
} | ||
if (t.kind == ts.SyntaxKind.VoidKeyword) { | ||
return basicType("void", null); | ||
} | ||
if (t.kind == ts.SyntaxKind.TypeReference) { | ||
@@ -365,3 +368,3 @@ var tr = t; | ||
} | ||
throw new Error("Case not supported" + t.kind); | ||
throw new Error("Case not supported: " + t.kind); | ||
} | ||
@@ -368,0 +371,0 @@ exports.buildType = buildType; |
{ | ||
"name": "ts-structure-parser", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "main": "dist/tsStructureParser.js", |
@@ -448,2 +448,5 @@ /** | ||
} | ||
if (t.kind==ts.SyntaxKind.VoidKeyword){ | ||
return basicType("void",null) | ||
} | ||
@@ -478,3 +481,3 @@ if (t.kind==ts.SyntaxKind.TypeReference){ | ||
} | ||
throw new Error("Case not supported"+t.kind) | ||
throw new Error("Case not supported: "+t.kind) | ||
} | ||
@@ -481,0 +484,0 @@ function parseQualified2(n:any):string{ |
Sorry, the diff of this file is not supported yet
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
599770
16789