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

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

Issue 1685363002: Add a platform plugin infrastructure. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Code review changes Created 4 years, 10 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_suite.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'dart:async';
6
7 import '../backend/metadata.dart';
8 import 'configuration.dart';
9 import 'runner_suite.dart';
10
11 typedef Future<RunnerSuite> LoadVMFileHook(String path, Metadata metadata,
12 Configuration config);
13
14 /// **Do not set or use this function without express permission from the test
15 /// package authors**.
16 ///
17 /// A function that overrides the loader's default behavior for loading test
18 /// suites on the Dart VM. This function takes the path to the file, the
19 /// file's metadata, and the test runner's configuration and returns a
20 /// [RunnerSuite] for that file.
21 LoadVMFileHook loadVMFileHook;
OLDNEW
« no previous file with comments | « lib/src/runner/environment.dart ('k') | lib/src/runner/load_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698