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

Side by Side Diff: lib/src/prism/tests/languages/stylus/variable-declaration_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 foo = 'bar'
2 a = 4
3 bar-baz = 5
4 a += 8
5
6 ----------------------------------------------------
7
8 [
9 ["variable-declaration", [
10 ["variable", "foo"],
11 ["operator", "="],
12 ["string", "'bar'"]
13 ]],
14 ["variable-declaration", [
15 ["variable", "a"],
16 ["operator", "="],
17 ["number", "4"]
18 ]],
19 ["variable-declaration", [
20 ["variable", "bar-baz"],
21 ["operator", "="],
22 ["number", "5"]
23 ]],
24 ["variable-declaration", [
25 ["variable", "a"],
26 ["operator", "+="],
27 ["number", "8"]
28 ]]
29 ]
30
31 ----------------------------------------------------
32
33 Checks for variable declarations.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/stylus/url_feature.test ('k') | lib/src/prism/tests/languages/swift/atrule_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698