File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 554
554
} else {
555
555
return node ;
556
556
}
557
- break ;
558
557
case TOK_NOT :
559
558
right = this . expression ( bindingPower . Not ) ;
560
559
return { type : "NotExpression" , children : [ right ] } ;
591
590
} else {
592
591
return this . _parseMultiselectList ( ) ;
593
592
}
594
- break ;
595
593
case TOK_CURRENT :
596
594
return { type : TOK_CURRENT } ;
597
595
case TOK_EXPREF :
629
627
right = this . _parseProjectionRHS ( rbp ) ;
630
628
return { type : "ValueProjection" , children : [ left , right ] } ;
631
629
}
632
- break ;
633
630
case TOK_PIPE :
634
631
right = this . expression ( bindingPower . Pipe ) ;
635
632
return { type : TOK_PIPE , children : [ left , right ] } ;
689
686
right = this . _parseProjectionRHS ( bindingPower . Star ) ;
690
687
return { type : "Projection" , children : [ left , right ] } ;
691
688
}
692
- break ;
693
689
default :
694
690
this . _errorToken ( this . _lookaheadToken ( 0 ) ) ;
695
691
}
878
874
} else {
879
875
return null ;
880
876
}
881
- break ;
882
877
case "Subexpression" :
883
878
result = this . visit ( node . children [ 0 ] , value ) ;
884
879
for ( i = 1 ; i < node . children . length ; i ++ ) {
You can’t perform that action at this time.
0 commit comments