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

Side by Side Diff: packages/barback/test/transformer/lazy_check_content_and_rename.dart

Issue 3014633002: Roll to pickup pool changes (Closed)
Patch Set: Created 3 years, 2 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 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS 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 barback.test.transformer.lazy_check_content_and_rename; 5 library barback.test.transformer.lazy_check_content_and_rename;
6 6
7 import 'package:barback/barback.dart'; 7 import 'package:barback/barback.dart';
8 8
9 import 'declaring_check_content_and_rename.dart'; 9 import 'declaring_check_content_and_rename.dart';
10 10
11 class LazyCheckContentAndRenameTransformer 11 class LazyCheckContentAndRenameTransformer
12 extends DeclaringCheckContentAndRenameTransformer 12 extends DeclaringCheckContentAndRenameTransformer
13 implements LazyTransformer { 13 implements LazyTransformer {
14 LazyCheckContentAndRenameTransformer({String oldExtension, 14 LazyCheckContentAndRenameTransformer(
15 String oldContent, String newExtension, String newContent}) 15 {String oldExtension,
16 : super(oldExtension: oldExtension, oldContent: oldContent, 16 String oldContent,
17 newExtension: newExtension, newContent: newContent); 17 String newExtension,
18 String newContent})
19 : super(
20 oldExtension: oldExtension,
21 oldContent: oldContent,
22 newExtension: newExtension,
23 newContent: newContent);
18 } 24 }
OLDNEW
« no previous file with comments | « packages/barback/test/transformer/lazy_assets.dart ('k') | packages/barback/test/transformer/lazy_many_to_one.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698