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

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

Issue 557563002: Store the async-await compiled pub code directly in the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
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 '../descriptor.dart' as d; 1 import '../descriptor.dart' as d;
6 import '../test_pub.dart'; 2 import '../test_pub.dart';
7 import '../serve/utils.dart'; 3 import '../serve/utils.dart';
8
9 /// The code for a transformer that renames ".js" files to ".out".
10 const JS_REWRITE_TRANSFORMER = """ 4 const JS_REWRITE_TRANSFORMER = """
11 import 'dart:async'; 5 import 'dart:async';
12 6
13 import 'package:barback/barback.dart'; 7 import 'package:barback/barback.dart';
14 8
15 class RewriteTransformer extends Transformer { 9 class RewriteTransformer extends Transformer {
16 RewriteTransformer.asPlugin(); 10 RewriteTransformer.asPlugin();
17 11
18 String get allowedExtensions => '.js'; 12 String get allowedExtensions => '.js';
19 13
20 Future apply(Transform transform) { 14 Future apply(Transform transform) {
21 return transform.primaryInput.readAsString().then((contents) { 15 return transform.primaryInput.readAsString().then((contents) {
22 var id = transform.primaryInput.id.changeExtension(".out"); 16 var id = transform.primaryInput.id.changeExtension(".out");
23 transform.addOutput(new Asset.fromString(id, contents)); 17 transform.addOutput(new Asset.fromString(id, contents));
24 }); 18 });
25 } 19 }
26 } 20 }
27 """; 21 """;
28
29 main() { 22 main() {
30 initConfig(); 23 initConfig();
31 withBarbackVersions("any", () { 24 withBarbackVersions("any", () {
32 integration("output can be consumed by successive phases", () { 25 integration("output can be consumed by successive phases", () {
33 d.dir(appPath, [ 26 d.dir(appPath, [d.pubspec({
34 d.pubspec({
35 "name": "myapp", 27 "name": "myapp",
36 "transformers": ["\$dart2js", "myapp/src/transformer"] 28 "transformers": ["\$dart2js", "myapp/src/transformer"]
37 }), 29 }),
38 d.dir("lib", [d.dir("src", [ 30 d.dir(
39 d.file("transformer.dart", JS_REWRITE_TRANSFORMER) 31 "lib",
40 ])]), 32 [d.dir("src", [d.file("transformer.dart", JS_REWRITE_TRANSFORMER )])]),
41 d.dir("web", [d.file("main.dart", "void main() {}")]) 33 d.dir("web", [d.file("main.dart", "void main() {}")])]).create();
42 ]).create();
43
44 createLockFile('myapp', pkg: ['barback']); 34 createLockFile('myapp', pkg: ['barback']);
45
46 pubServe(); 35 pubServe();
47 requestShouldSucceed("main.dart.out", isUnminifiedDart2JSOutput); 36 requestShouldSucceed("main.dart.out", isUnminifiedDart2JSOutput);
48 endPubServe(); 37 endPubServe();
49 }); 38 });
50 }); 39 });
51 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698