Commit 0a286c38 authored by Ujvari Gergely's avatar Ujvari Gergely

Make operator symbols a bit more consistent

parent 0b258c02
...@@ -10,14 +10,14 @@ class ClauseParser ...@@ -10,14 +10,14 @@ class ClauseParser
'=<': 'le' '=<': 'le'
'<=': 'le' '<=': 'le'
'[' : 'one_of' '[' : 'one_of'
'#' : 'matches' '=~' : 'matches'
'^' : 'first_of' '^' : 'first_of'
'{' : 'match_of' # one_of but not exact search '{' : 'match_of' # one_of but not exact search
'|=' : 'lene' '#=' : 'lene'
'|>' : 'leng' '#>' : 'leng'
'|>=' : 'lenge' '#>=' : 'lenge'
'|<' : 'lenl' '#<' : 'lenl'
'|<=' : 'lenle' '#<=' : 'lenle'
insensitive_operator : 'i' insensitive_operator : 'i'
parse_clauses: (clauses) -> parse_clauses: (clauses) ->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment