better pogen error reporting
This commit is contained in:
parent
c43e24bb13
commit
e43187d617
@ -227,7 +227,8 @@ export function processFile(sourceFile: ts.SourceFile) {
|
||||
case ts.SyntaxKind.JsxClosingElement:
|
||||
break;
|
||||
default:
|
||||
console.error("unrecognized syntax in JSX Element", ts.SyntaxKind[childNode.kind]);
|
||||
let lc = ts.getLineAndCharacterOfPosition(childNode.getSourceFile(), childNode.getStart());
|
||||
console.error(`unrecognized syntax in JSX Element (${childNode.getSourceFile().fileName}:${lc.line}:${lc.character}`);
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user