taler-typescript-core

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

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

fix pogen with sub-JSX expression

Diffstat:
Mpogen/pogen.ts | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/pogen/pogen.ts b/pogen/pogen.ts @@ -218,6 +218,9 @@ export function processFile(sourceFile: ts.SourceFile) { } case ts.SyntaxKind.JsxOpeningElement: break; + case ts.SyntaxKind.JsxElement: + fragments.push(`%${holeNum[0]++}$s`); + break; case ts.SyntaxKind.JsxExpression: { let e = childNode as ts.JsxExpression;