| OLD | NEW |
| 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 } |
| OLD | NEW |