aboutsummaryrefslogtreecommitdiff
path: root/pogen
diff options
context:
space:
mode:
Diffstat (limited to 'pogen')
-rw-r--r--pogen/pogen.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/pogen/pogen.ts b/pogen/pogen.ts
index a622c9990..bba11240b 100644
--- a/pogen/pogen.ts
+++ b/pogen/pogen.ts
@@ -181,6 +181,9 @@ 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:
{