aboutsummaryrefslogtreecommitdiff
path: root/pogen
diff options
context:
space:
mode:
Diffstat (limited to 'pogen')
-rw-r--r--pogen/pogen.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/pogen/pogen.ts b/pogen/pogen.ts
index 441ee3e51..9e9fc1f20 100644
--- a/pogen/pogen.ts
+++ b/pogen/pogen.ts
@@ -228,7 +228,7 @@ export function processFile(sourceFile: ts.SourceFile) {
break;
default:
let lc = ts.getLineAndCharacterOfPosition(childNode.getSourceFile(), childNode.getStart());
- console.error(`unrecognized syntax in JSX Element (${childNode.getSourceFile().fileName}:${lc.line}:${lc.character}`);
+ console.error(`unrecognized syntax in JSX Element ${ts.SyntaxKind[childNode.kind]} (${childNode.getSourceFile().fileName}:${lc.line+1}:${lc.character+1}`);
break;
}
};