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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/dart2js/source_maps_include_core_libs_in_subdirectory_test.dart

Issue 887223007: Revert "Use native async/await support in pub." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'package:path/path.dart' as path; 5 import 'package:path/path.dart' as path;
6 import 'package:scheduled_test/scheduled_test.dart'; 6 import 'package:scheduled_test/scheduled_test.dart';
7 7
8 import '../descriptor.dart' as d; 8 import '../descriptor.dart' as d;
9 import '../serve/utils.dart'; 9 import '../serve/utils.dart';
10 import '../test_pub.dart'; 10 import '../test_pub.dart';
11 11
12 main() { 12 main() {
13 initConfig(); 13 initConfig();
14 14
15 // This test is a bit shaky. Since dart2js is free to inline things, it's 15 // This test is a bit shaky. Since dart2js is free to inline things, it's
16 // not precise as to which source libraries will actually be referenced in 16 // not precise as to which source libraries will actually be referenced in
17 // the source map. But this tries to use a type in the core library 17 // the source map. But this tries to use a type in the core library
18 // (StringBuffer) and validate that its source ends up in the source map. 18 // (StringBuffer) and validate that its source ends up in the source map.
19 integration("Dart core libraries are available to source maps when the " 19 integration(
20 "build directory is a subdirectory", () { 20 "Dart core libraries are available to source maps when the "
21 d.dir(appPath, [ 21 "build directory is a subdirectory",
22 d.appPubspec(), 22 () {
23 d.dir("web", [ 23 d.dir(
24 d.dir("sub", [ 24 appPath,
25 d.file("main.dart", "main() => new StringBuffer().writeAll(['s']);") 25 [
26 ]) 26 d.appPubspec(),
27 ]) 27 d.dir(
28 ]).create(); 28 "web",
29 [
30 d.dir(
31 "sub",
32 [
33 d.file(
34 "main.dart",
35 "main() => new StringBuffer().writeAll(['s']);") ])])]).create();
29 36
30 var webSub = path.join("web", "sub"); 37 var webSub = path.join("web", "sub");
31 pubServe(args: [webSub]); 38 pubServe(args: [webSub]);
32 39
33 requestShouldSucceed("main.dart.js.map", 40 requestShouldSucceed(
41 "main.dart.js.map",
34 contains(r"packages/$sdk/lib/core/string_buffer.dart"), 42 contains(r"packages/$sdk/lib/core/string_buffer.dart"),
35 root: webSub); 43 root: webSub);
36 requestShouldSucceed(r"packages/$sdk/lib/core/string_buffer.dart", 44 requestShouldSucceed(
45 r"packages/$sdk/lib/core/string_buffer.dart",
37 contains("class StringBuffer"), 46 contains("class StringBuffer"),
38 root: webSub); 47 root: webSub);
39 48
40 endPubServe(); 49 endPubServe();
41 }); 50 });
42 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698