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

Side by Side Diff: lib/src/prism/tests/languages/powershell/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 ! -eq -ne -gt -ge -lt -le -shl -shr -not -band -and -bxor -bor -or
2 -Like -Match -Contains -In -NotLike -NotMatch -NotContains -NotIn -Replace -Join
3 -is -isNot -as
4 -= += *= /= %= - + * / % -- ++
5
6 ----------------------------------------------------
7
8 [
9 ["operator", "!"],
10 ["operator", "-eq"],
11 ["operator", "-ne"],
12 ["operator", "-gt"],
13 ["operator", "-ge"],
14 ["operator", "-lt"],
15 ["operator", "-le"],
16 ["operator", "-shl"],
17 ["operator", "-shr"],
18 ["operator", "-not"],
19 ["operator", "-band"],
20 ["operator", "-and"],
21 ["operator", "-bxor"],
22 ["operator", "-bor"],
23 ["operator", "-or"],
24
25 ["operator", "-Like"],
26 ["operator", "-Match"],
27 ["operator", "-Contains"],
28 ["operator", "-In"],
29 ["operator", "-NotLike"],
30 ["operator", "-NotMatch"],
31 ["operator", "-NotContains"],
32 ["operator", "-NotIn"],
33 ["operator", "-Replace"],
34 ["operator", "-Join"],
35 ["operator", "-is"],
36 ["operator", "-isNot"],
37 ["operator", "-as"],
38
39 ["operator", "-="],
40 ["operator", "+="],
41 ["operator", "*="],
42 ["operator", "/="],
43 ["operator", "%="],
44 ["operator", "-"],
45 ["operator", "+"],
46 ["operator", "*"],
47 ["operator", "/"],
48 ["operator", "%"],
49 ["operator", "--"],
50 ["operator", "++"]
51
52 ]
53 ----------------------------------------------------
54
55 Testing operators.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698