"VariableDeclarator": function (node, next) {
            stack.push(node.id.name);
            next(node.init);
            stack.pop();
        },