return misc.nodeMatcher("ConditionalExpression", function (node) {
    var testM = testMatcher(node.test);
    var consequentM = consequentMatcher(node.consequent);
    var alternateM = alternateMatcher(node.alternate);