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

Side by Side Diff: sdk/lib/_internal/pub/test/serve/allows_arbitrary_modes_test.dart

Issue 423823010: Support source_span spans in barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 6 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 | 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 library pub_tests; 5 library pub_tests;
6 6
7 import '../descriptor.dart' as d; 7 import '../descriptor.dart' as d;
8 import '../test_pub.dart'; 8 import '../test_pub.dart';
9 import '../serve/utils.dart'; 9 import '../serve/utils.dart';
10 10
11 const TRANSFORMER = """ 11 const TRANSFORMER = """
12 import 'dart:async'; 12 import 'dart:async';
13 13
14 import 'package:barback/barback.dart'; 14 import 'package:barback/barback.dart';
15 import 'package:source_maps/source_maps.dart';
16 15
17 class ModeTransformer extends Transformer { 16 class ModeTransformer extends Transformer {
18 final BarbackSettings settings; 17 final BarbackSettings settings;
19 ModeTransformer.asPlugin(this.settings); 18 ModeTransformer.asPlugin(this.settings);
20 19
21 String get allowedExtensions => '.txt'; 20 String get allowedExtensions => '.txt';
22 21
23 Future apply(Transform transform) { 22 Future apply(Transform transform) {
24 return new Future.value().then((_) { 23 return new Future.value().then((_) {
25 var id = transform.primaryInput.id.changeExtension(".out"); 24 var id = transform.primaryInput.id.changeExtension(".out");
(...skipping 21 matching lines...) Expand all
47 ]).create(); 46 ]).create();
48 47
49 createLockFile('myapp', pkg: ['barback']); 48 createLockFile('myapp', pkg: ['barback']);
50 49
51 pubServe(args: ["--mode", "depeche"]); 50 pubServe(args: ["--mode", "depeche"]);
52 requestShouldSucceed("foo.out", "depeche"); 51 requestShouldSucceed("foo.out", "depeche");
53 endPubServe(); 52 endPubServe();
54 }); 53 });
55 }); 54 });
56 } 55 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/pub/test/preprocess_test.dart ('k') | sdk/lib/_internal/pub/test/serve/defaults_to_debug_mode_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698