353b66038e
(Note that the current mirrors implementation is just a heartbeat implementation of a single method) Use native code instead of dart code to do the work. Use JSON instead of Lists/Maps for commands/responses. Reenable disabled tests. Review URL: https://chromiumcodereview.appspot.com//10175011 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@6864 260f80e4-7a28-3924-810f-c04153c831b5
19 lines
492 B
C++
19 lines
492 B
C++
// Copyright (c) 2011, 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.
|
|
|
|
#ifndef LIB_MIRRORS_H_
|
|
#define LIB_MIRRORS_H_
|
|
|
|
namespace dart {
|
|
|
|
class Instance;
|
|
|
|
void HandleMirrorsMessage(Isolate* isolate,
|
|
Dart_Port reply_port,
|
|
const Instance& message);
|
|
|
|
} // namespace dart
|
|
|
|
#endif // LIB_MIRRORS_H_
|