Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012, 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 // #library("mirrors"); | |
| 6 | |
| 7 // The dart:mirrors library provides reflective access for Dart program. | |
| 8 // | |
| 9 // TODO(turnidge): Complete this api. This is a placeholder. | |
| 10 | |
| 11 interface IsolateMirror { | |
|
ahe
2012/02/17 08:09:12
I'd like to implement these interfaces in Leg as w
Ivan Posva
2012/02/17 08:21:50
Peter, when I talked with Todd yesterday his plan
ahe
2012/02/17 09:13:21
Actually, I think it already is in a shared locati
| |
| 12 // A name used to refer to an isolate in debugging messages. | |
| 13 final String debugName; | |
| 14 } | |
| 15 | |
| 16 Future<IsolateMirror> isolateMirrorOf(SendPort port) { | |
| 17 return _Mirrors.isolateMirrorOf(port); | |
| 18 } | |
| OLD | NEW |