diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-10 17:43:21 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-10 17:43:40 +0200 |
commit | 31bddb98c60e34bb161f08c576f7d7437dbbe15c (patch) | |
tree | 1f134aa4e4fe1a53053192997ae9cdc4fc3e09de | |
parent | 5fd3e06f7bd19f715ba8dae6ec1f716102ffe94c (diff) |
fix pogen
-rw-r--r-- | pogen/pogen.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pogen/pogen.ts b/pogen/pogen.ts index bba11240b..a622c9990 100644 --- a/pogen/pogen.ts +++ b/pogen/pogen.ts @@ -181,9 +181,6 @@ export function processFile(sourceFile: ts.SourceFile) { function processNode(node: ts.Node) { - console.log(ts.SyntaxKind[node.kind]); - ts.forEachChild(node, processNode); - return; switch (node.kind) { case ts.SyntaxKind.CallExpression: { |