Method: XRay::JS::Expr::Operate#parse_expr_relation
- Defined in:
- lib/js/expr/operate.rb
#parse_expr_relation ⇒ Object
43 44 45 46 47 48 |
# File 'lib/js/expr/operate.rb', line 43 def parse_expr_relation not_in = expr_operate_not_in? log "parse expr relational#{not_in ? '(notin)' : ''}" pattern = not_in ? (/>=|<=|>|<|\binstanceof\b/) : (/>=|<=|>|<|\binstanceof\b|\bin\b/) parse_expr_with_operate :parse_expr_shift, pattern end |