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

Side by Side Diff: pkg/front_end/test/src/dependency_walker_test.dart

Issue 2550323003: Add missing copyrights (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « pkg/front_end/lib/src/dependency_walker.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2016, 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
1 import 'package:front_end/src/dependency_walker.dart'; 5 import 'package:front_end/src/dependency_walker.dart';
2 import 'package:test/test.dart'; 6 import 'package:test/test.dart';
3 import 'package:test_reflective_loader/test_reflective_loader.dart'; 7 import 'package:test_reflective_loader/test_reflective_loader.dart';
4 8
5 main() { 9 main() {
6 defineReflectiveSuite(() { 10 defineReflectiveSuite(() {
7 defineReflectiveTests(DependencyWalkerTest); 11 defineReflectiveTests(DependencyWalkerTest);
8 }); 12 });
9 } 13 }
10 14
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 for (var v in scc) { 210 for (var v in scc) {
207 v.isEvaluated = true; 211 v.isEvaluated = true;
208 } 212 }
209 var sccNames = scc.map((node) => node._name).toSet(); 213 var sccNames = scc.map((node) => node._name).toSet();
210 // Make sure there were no duplicates 214 // Make sure there were no duplicates
211 expect(sccNames.length, scc.length); 215 expect(sccNames.length, scc.length);
212 _evaluations.add(sccNames); 216 _evaluations.add(sccNames);
213 _sccFlags.add(true); 217 _sccFlags.add(true);
214 } 218 }
215 } 219 }
OLDNEW
« no previous file with comments | « pkg/front_end/lib/src/dependency_walker.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698