OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library barback.test.transformer.lazy_check_content_and_rename; |
| 6 |
| 7 import 'dart:async'; |
| 8 |
| 9 import 'package:barback/barback.dart'; |
| 10 |
| 11 import 'declaring_check_content_and_rename.dart'; |
| 12 |
| 13 class LazyCheckContentAndRenameTransformer |
| 14 extends DeclaringCheckContentAndRenameTransformer |
| 15 implements LazyTransformer { |
| 16 LazyCheckContentAndRenameTransformer({String oldExtension, |
| 17 String oldContent, String newExtension, String newContent}) |
| 18 : super(oldExtension: oldExtension, oldContent: oldContent, |
| 19 newExtension: newExtension, newContent: newContent); |
| 20 } |
OLD | NEW |