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

Side by Side Diff: lib/src/prism/tests/languages/bash/command_substitution_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 $(echo foo)
2 `echo foo`
3 "$(echo foo) bar"
4
5 ----------------------------------------------------
6
7 [
8 ["variable", [
9 ["variable", "$("],
10 ["keyword", "echo"],
11 " foo",
12 ["variable", ")"]
13 ]],
14 ["variable", [
15 ["variable", "`"],
16 ["keyword", "echo"],
17 " foo",
18 ["variable", "`"]
19 ]],
20 ["string", [
21 "\"",
22 ["variable", [
23 ["variable", "$("],
24 ["keyword", "echo"],
25 " foo",
26 ["variable", ")"]
27 ]],
28 " bar\""
29 ]]
30 ]
31
32 ----------------------------------------------------
33
34 Checks for command substitution.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698