taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit d2f9fc8617de0496f546972c7798f3c1669c2393
parent e43187d617d33ffbfdbd1121e5166fe8a65fe21b
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed, 23 Nov 2016 00:59:01 +0100

fix line/col reporting

Diffstat:
Mpogen/pogen.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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; } };