OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // This API is exploratory. | 5 // This API is exploratory. |
6 spawnDomFunction(Function topLevelFunction) => _Utils.spawnDomFunctionImpl(topLe
velFunction); | 6 spawnDomFunction(Function topLevelFunction) => _Utils.spawnDomFunctionImpl(topLe
velFunction); |
7 | 7 |
8 // testRunner implementation. | 8 // testRunner implementation. |
9 // FIXME: provide a separate lib for testRunner. | 9 // FIXME: provide a separate lib for testRunner. |
10 | 10 |
11 var _testRunner; | 11 var _testRunner; |
12 | 12 |
13 TestRunner get testRunner() { | 13 TestRunner get testRunner { |
14 if (_testRunner === null) | 14 if (_testRunner === null) |
15 _testRunner = new TestRunner._(_NPObject.retrieve("testRunner")); | 15 _testRunner = new TestRunner._(_NPObject.retrieve("testRunner")); |
16 return _testRunner; | 16 return _testRunner; |
17 } | 17 } |
18 | 18 |
19 class TestRunner { | 19 class TestRunner { |
20 final _NPObject _npObject; | 20 final _NPObject _npObject; |
21 | 21 |
22 TestRunner._(this._npObject); | 22 TestRunner._(this._npObject); |
23 | 23 |
24 display() => _npObject.invoke('display'); | 24 display() => _npObject.invoke('display'); |
25 dumpAsText() => _npObject.invoke('dumpAsText'); | 25 dumpAsText() => _npObject.invoke('dumpAsText'); |
26 notifyDone() => _npObject.invoke('notifyDone'); | 26 notifyDone() => _npObject.invoke('notifyDone'); |
27 setCanOpenWindows() => _npObject.invoke('setCanOpenWindows'); | 27 setCanOpenWindows() => _npObject.invoke('setCanOpenWindows'); |
28 waitUntilDone() => _npObject.invoke('waitUntilDone'); | 28 waitUntilDone() => _npObject.invoke('waitUntilDone'); |
29 } | 29 } |
OLD | NEW |