Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: lib/src/prism/tests/languages/sql/operator_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 + - * /
2 = % ^ ~
3 | ||
4 & &&
5 ! !=
6 < <= << <> <=>
7 > >= >>
8
9 AND
10 BETWEEN
11 IN
12 LIKE
13 NOT
14 OR
15 IS
16 DIV
17 REGEXP
18 RLIKE
19 SOUNDS LIKE
20 XOR
21
22 ----------------------------------------------------
23
24 [
25 ["operator", "+"], ["operator", "-"], ["operator", "*"], ["operator", "/ "],
26 ["operator", "="], ["operator", "%"], ["operator", "^"], ["operator", "~ "],
27 ["operator", "|"], ["operator", "||"],
28 ["operator", "&"], ["operator", "&&"],
29 ["operator", "!"], ["operator", "!="],
30 ["operator", "<"], ["operator", "<="], ["operator", "<<"], ["operator", "<>"], ["operator", "<=>"],
31 ["operator", ">"], ["operator", ">="], ["operator", ">>"],
32
33 ["operator", "AND"],
34 ["operator", "BETWEEN"],
35 ["operator", "IN"],
36 ["operator", "LIKE"],
37 ["operator", "NOT"],
38 ["operator", "OR"],
39 ["operator", "IS"],
40 ["operator", "DIV"],
41 ["operator", "REGEXP"],
42 ["operator", "RLIKE"],
43 ["operator", "SOUNDS LIKE"],
44 ["operator", "XOR"]
45 ]
46
47 ----------------------------------------------------
48
49 Checks for all operators.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/sql/keyword_feature.test ('k') | lib/src/prism/tests/languages/sql/string_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698