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

Side by Side Diff: lib/src/prism/tests/languages/sass/variable-line_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 $width: 5em
2 $foo: $bar + $baz
3 $bar: #{$baz}
4
5 ----------------------------------------------------
6
7 [
8 ["variable-line", [
9 ["variable", "$width"],
10 ["punctuation", ":"],
11 " 5em"
12 ]],
13 ["variable-line", [
14 ["variable", "$foo"],
15 ["punctuation", ":"],
16 ["variable", "$bar"],
17 ["operator", "+"],
18 ["variable", "$baz"]
19 ]],
20 ["variable-line", [
21 ["variable", "$bar"],
22 ["punctuation", ":"],
23 ["variable", "#{$baz}"]
24 ]]
25 ]
26
27 ----------------------------------------------------
28
29 Checks for variable declarations.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/sass/selector_feature.test ('k') | lib/src/prism/tests/languages/scala/builtin_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698