function analyzeNodeChildren()

in src/tslint/incorrectStateAccessRule.ts [71:79]


function analyzeNodeChildren(node: ts.Node, context: string, skip?: boolean): void {
    if (DEBUG) {
        console.log(context, node.kind, node.getText());
    }

    if (!skip) {
        node.forEachChild(analyzeMethodBody);
    }
}