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

Side by Side Diff: lib/src/prism/tests/languages/tcl/variable_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
2 $Foobar_42
3 $::foo
4 $foo::bar42
5
6 ${foobar}
7
8 set foo bar
9 set Foobar_42 baz
10 set ::foo bar
11 set foo::bar42 baz
12
13 ----------------------------------------------------
14
15 [
16 "$", ["variable", "foo"],
17 "\r\n$", ["variable", "Foobar_42"],
18 "\r\n$", ["variable", "::foo"],
19 "\r\n$", ["variable", "foo::bar42"],
20
21 "\r\n\r\n$", ["variable", "{foobar}"],
22
23 ["keyword", "set"], ["variable", "foo"], " bar\r\n",
24 ["keyword", "set"], ["variable", "Foobar_42"], " baz\r\n",
25 ["keyword", "set"], ["variable", "::foo"], " bar\r\n",
26 ["keyword", "set"], ["variable", "foo::bar42"], " baz"
27 ]
28
29 ----------------------------------------------------
30
31 Checks for variables.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/tcl/string_feature.test ('k') | lib/src/prism/tests/languages/textile/acronym_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698