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

Side by Side Diff: lib/src/runner/hack_load_vm_file_hook.dart

Issue 1580973002: Get rid of all the library tags. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « lib/src/runner/environment.dart ('k') | lib/src/runner/load_exception.dart » ('j') | 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 test.runner.hack_load_vm_file_hook;
6
7 import 'dart:async'; 5 import 'dart:async';
8 6
9 import '../backend/metadata.dart'; 7 import '../backend/metadata.dart';
10 import 'configuration.dart'; 8 import 'configuration.dart';
11 import 'runner_suite.dart'; 9 import 'runner_suite.dart';
12 10
13 typedef Future<RunnerSuite> LoadVMFileHook(String path, Metadata metadata, 11 typedef Future<RunnerSuite> LoadVMFileHook(String path, Metadata metadata,
14 Configuration config); 12 Configuration config);
15 13
16 /// **Do not set or use this function without express permission from the test 14 /// **Do not set or use this function without express permission from the test
17 /// package authors**. 15 /// package authors**.
18 /// 16 ///
19 /// A function that overrides the loader's default behavior for loading test 17 /// A function that overrides the loader's default behavior for loading test
20 /// suites on the Dart VM. This function takes the path to the file, the 18 /// suites on the Dart VM. This function takes the path to the file, the
21 /// file's metadata, and the test runner's configuration and returns a 19 /// file's metadata, and the test runner's configuration and returns a
22 /// [RunnerSuite] for that file. 20 /// [RunnerSuite] for that file.
23 LoadVMFileHook loadVMFileHook; 21 LoadVMFileHook loadVMFileHook;
OLDNEW
« no previous file with comments | « lib/src/runner/environment.dart ('k') | lib/src/runner/load_exception.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698