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

Side by Side Diff: lib/src/prism/tests/languages/haskell/import_statement_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 import Foo
2 import qualified Foobar
3 import Foo_42.Bar as Foobar
4 import Foo.Bar as Foo.Baz hiding
5
6 ----------------------------------------------------
7
8 [
9 ["import_statement", [
10 ["keyword", "import"],
11 " Foo"
12 ]],
13 ["import_statement", [
14 ["keyword", "import"],
15 ["keyword", "qualified"],
16 " Foobar"
17 ]],
18 ["import_statement", [
19 ["keyword", "import"],
20 " Foo_42.Bar ",
21 ["keyword", "as"],
22 " Foobar"
23 ]],
24 ["import_statement", [
25 ["keyword", "import"],
26 " Foo.Bar ",
27 ["keyword", "as"],
28 " Foo.Baz ",
29 ["keyword", "hiding"]
30 ]]
31 ]
32
33 ----------------------------------------------------
34
35 Checks for import statement.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698