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

Side by Side Diff: lib/src/prism/tests/languages/nasm/keyword_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 BITS 16 BITS 32 BITS 64
2 [BITS 16] [BITS 32] [BITS 64]
3
4 section Foo.bar
5 section foobar:
6
7 extern _printf
8 global _main
9
10 CPU 8086
11 FLOAT DAZ
12 DEFAULT REL
13
14 ----------------------------------------------------
15
16 [
17 ["keyword", "BITS 16"], ["keyword", "BITS 32"], ["keyword", "BITS 64"],
18 ["keyword", "[BITS 16]"], ["keyword", "[BITS 32]"], ["keyword", "[BITS 6 4]"],
19 ["keyword", "section Foo.bar"],
20 ["keyword", "section foobar:"],
21 ["keyword", "extern _printf"],
22 ["keyword", "global _main"],
23 ["keyword", "CPU 8086"],
24 ["keyword", "FLOAT DAZ"],
25 ["keyword", "DEFAULT REL"]
26 ]
27
28 ----------------------------------------------------
29
30 Checks for keywords.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/nasm/comment_feature.test ('k') | lib/src/prism/tests/languages/nasm/label_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698