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

Side by Side Diff: lib/src/prism/tests/languages/applescript/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 start with begin with end with
6 starts with begins with ends with
7 does not contain doesn't contain
8 contain contains
9 is in isn't in is not in
10 is contained by isn't contained by is not contained by
11 greater than greater than or equal greater than or equal to
12 less than less than or equal less than or equal to
13 does not come before doesn't come before comes before
14 does not come after doesn't come after comes after
15 is equal isn't equal is not equal
16 is equal to isn't equal to is not equal to
17 does not equal doesn't equal equals
18 isn't is not
19 ref a ref to a reference to
20 and or div mod as not
21
22 ----------------------------------------------------
23
24 [
25 ["operator", "&"], ["operator", "="], ["operator", "≠"], ["operator", "≤ "], ["operator", "≥"],
26 ["operator", "*"], ["operator", "+"], ["operator", "-"], ["operator", "/ "], ["operator", "÷"], ["operator", "^"],
27 ["operator", "<"], ["operator", "<="], ["operator", ">"], ["operator", " >="],
28 ["operator", "start with"], ["operator", "begin with"], ["operator", "en d with"],
29 ["operator", "starts with"], ["operator", "begins with"], ["operator", " ends with"],
30 ["operator", "does not contain"], ["operator", "doesn't contain"],
31 ["operator", "contain"], ["operator", "contains"],
32 ["operator", "is in"], ["operator", "isn't in"], ["operator", "is not in "],
33 ["operator", "is contained by"], ["operator", "isn't contained by"], ["o perator", "is not contained by"],
34 ["operator", "greater than"], ["operator", "greater than or equal"], ["o perator", "greater than or equal to"],
35 ["operator", "less than"], ["operator", "less than or equal"], ["operato r", "less than or equal to"],
36 ["operator", "does not come before"], ["operator", "doesn't come before" ], ["operator", "comes before"],
37 ["operator", "does not come after"], ["operator", "doesn't come after"], ["operator", "comes after"],
38 ["operator", "is equal"], ["operator", "isn't equal"], ["operator", "is not equal"],
39 ["operator", "is equal to"], ["operator", "isn't equal to"], ["operator" , "is not equal to"],
40 ["operator", "does not equal"], ["operator", "doesn't equal"], ["operato r", "equals"],
41 ["operator", "isn't"], ["operator", "is not"],
42 ["operator", "ref"], ["operator", "a ref to"], ["operator", "a reference to"],
43 ["operator", "and"], ["operator", "or"], ["operator", "div"], ["operator ", "mod"], ["operator", "as"], ["operator", "not"]
44 ]
45
46 ----------------------------------------------------
47
48 Checks for most of the operators.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698