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

Side by Side Diff: lib/src/prism/tests/languages/twig/number_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 {{ 0xBadFace }}
2 {{ 42 }}
3 {{ 3.14159 }}
4 {{ 3e15 }}
5 {{ 4.5E-4 }}
6 {{ 0.2e+8 }}
7
8 ----------------------------------------------------
9
10 [
11 ["tag", [
12 ["ld", [["punctuation", "{{"]]],
13 ["number", "0xBadFace"],
14 ["rd", [["punctuation", "}}"]]]
15 ]],
16 ["tag", [
17 ["ld", [["punctuation", "{{"]]],
18 ["number", "42"],
19 ["rd", [["punctuation", "}}"]]]
20 ]],
21 ["tag", [
22 ["ld", [["punctuation", "{{"]]],
23 ["number", "3.14159"],
24 ["rd", [["punctuation", "}}"]]]
25 ]],
26 ["tag", [
27 ["ld", [["punctuation", "{{"]]],
28 ["number", "3e15"],
29 ["rd", [["punctuation", "}}"]]]
30 ]],
31 ["tag", [
32 ["ld", [["punctuation", "{{"]]],
33 ["number", "4.5E-4"],
34 ["rd", [["punctuation", "}}"]]]
35 ]],
36 ["tag", [
37 ["ld", [["punctuation", "{{"]]],
38 ["number", "0.2e+8"],
39 ["rd", [["punctuation", "}}"]]]
40 ]]
41 ]
42
43 ----------------------------------------------------
44
45 Checks for hexadecimal and decimal numbers.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/twig/keyword_feature.test ('k') | lib/src/prism/tests/languages/twig/operator_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698