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

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

Issue 896623005: Use native async/await support in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'package:path/path.dart' as path;
6 import 'package:scheduled_test/scheduled_test.dart';
7
8 import '../descriptor.dart' as d;
9 import '../serve/utils.dart';
10 import '../test_pub.dart';
11
12 main() {
13 initConfig();
14
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
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.
19 integration(
20 "Dart core libraries are available to source maps when the "
21 "build directory is a subdirectory",
22 () {
23 d.dir(
24 appPath,
25 [
26 d.appPubspec(),
27 d.dir(
28 "web",
29 [
30 d.dir(
31 "sub",
32 [
33 d.file(
34 "main.dart",
35 "main() => new StringBuffer().writeAll(['s']);") ])])]).create();
36
37 var webSub = path.join("web", "sub");
38 pubServe(args: [webSub]);
39
40 requestShouldSucceed(
41 "main.dart.js.map",
42 contains(r"packages/$sdk/lib/core/string_buffer.dart"),
43 root: webSub);
44 requestShouldSucceed(
45 r"packages/$sdk/lib/core/string_buffer.dart",
46 contains("class StringBuffer"),
47 root: webSub);
48
49 endPubServe();
50 });
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698