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

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

Issue 1947773002: Fix all strong-mode warnings. (Closed) Base URL: git@github.com:dart-lang/barback@master
Patch Set: Code review changes Created 4 years, 7 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 'dart:async';
8
9 import 'package:barback/barback.dart'; 7 import 'package:barback/barback.dart';
10 8
11 import 'declaring_check_content_and_rename.dart'; 9 import 'declaring_check_content_and_rename.dart';
12 10
13 class LazyCheckContentAndRenameTransformer 11 class LazyCheckContentAndRenameTransformer
14 extends DeclaringCheckContentAndRenameTransformer 12 extends DeclaringCheckContentAndRenameTransformer
15 implements LazyTransformer { 13 implements LazyTransformer {
16 LazyCheckContentAndRenameTransformer({String oldExtension, 14 LazyCheckContentAndRenameTransformer({String oldExtension,
17 String oldContent, String newExtension, String newContent}) 15 String oldContent, String newExtension, String newContent})
18 : super(oldExtension: oldExtension, oldContent: oldContent, 16 : super(oldExtension: oldExtension, oldContent: oldContent,
19 newExtension: newExtension, newContent: newContent); 17 newExtension: newExtension, newContent: newContent);
20 } 18 }
OLDNEW
« no previous file with comments | « test/transformer/declaring_check_content_and_rename.dart ('k') | test/transformer/many_to_one.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698