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

Side by Side Diff: packages/dart_style/test/regression/other/pub.stmt

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 months 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
1 >>> (indent 6) 1 >>> (indent 6)
2 builder.serve("foo", "1.2.3", 2 builder.serve("foo", "1.2.3",
3 deps: {'barback': 'any'}, 3 deps: {'barback': 'any'},
4 pubspec: {'transformers': ['foo']}, 4 pubspec: {'transformers': ['foo']},
5 contents: [ 5 contents: [
6 d.dir("lib", [ 6 d.dir("lib", [
7 d.file("transformer.dart", replaceTransformer("Hello", "Goodbye")), 7 d.file("transformer.dart", replaceTransformer("Hello", "Goodbye")),
8 d.file("foo.dart", "final message = 'Hello!';") 8 d.file("foo.dart", "final message = 'Hello!';")
9 ]) 9 ])
10 ]); 10 ]);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 ]) 52 ])
53 ]).validate(); 53 ]).validate();
54 <<< 54 <<<
55 d.dir(appPath, [ 55 d.dir(appPath, [
56 d.dir('build', [ 56 d.dir('build', [
57 d.dir('example', [ 57 d.dir('example', [
58 d.file("index.html", "html"), 58 d.file("index.html", "html"),
59 d.dir('packages', [ 59 d.dir('packages', [
60 d.dir('foo', [ 60 d.dir('foo', [
61 d.file('foo.txt', 'foo'), 61 d.file('foo.txt', 'foo'),
62 d.dir('sub', [d.file('bar.txt', 'bar'),]), 62 d.dir('sub', [
63 d.file('bar.txt', 'bar'),
64 ]),
63 ]) 65 ])
64 ]) 66 ])
65 ]), 67 ]),
66 d.dir('web', [ 68 d.dir('web', [
67 d.file("index.html", "html"), 69 d.file("index.html", "html"),
68 d.dir('packages', [ 70 d.dir('packages', [
69 d.dir('foo', [ 71 d.dir('foo', [
70 d.file('foo.txt', 'foo'), 72 d.file('foo.txt', 'foo'),
71 d.dir('sub', [d.file('bar.txt', 'bar'),]), 73 d.dir('sub', [
74 d.file('bar.txt', 'bar'),
75 ]),
72 ]) 76 ])
73 ]), 77 ]),
74 d.dir("sub", [ 78 d.dir("sub", [
75 d.file("index.html", "html"), 79 d.file("index.html", "html"),
76 // "packages" should *only* be created in the top-level directory. 80 // "packages" should *only* be created in the top-level directory.
77 d.nothing("packages") 81 d.nothing("packages")
78 ]) 82 ])
79 ]) 83 ])
80 ]) 84 ])
81 ]).validate(); 85 ]).validate();
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/other/angular.unit ('k') | packages/dart_style/test/splitting/._enums.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698