blob: 243de2294cf21a01698cdb0c0b6f6986da389a9c [file] [log] [blame]
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#library("dart:mirrors");
#import("dart:isolate");
#source("../../../mirrors/mirrors.dart");
/**
* Stub class for the mirror system.
*/
class _Mirrors {
static MirrorSystem currentMirrorSystem() {
throw new UnsupportedError("MirrorSystem not implemented");
}
static Future<MirrorSystem> mirrorSystemOf(SendPort port) {
throw new UnsupportedError("MirrorSystem not implemented");
}
static InstanceMirror reflect(Object reflectee) {
throw new UnsupportedError("MirrorSystem not implemented");
}
}