22623da3aa
BUG= R=jacobr@google.com Review URL: https://codereview.chromium.org//49793003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29579 260f80e4-7a28-3924-810f-c04153c831b5
11 lines
426 B
JavaScript
11 lines
426 B
JavaScript
// Copyright (c) 2013, 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.
|
|
|
|
// Type for remote proxies to Dart objects with dart2js.
|
|
// WARNING: do not call this constructor or rely on it being
|
|
// in the global namespace, as it may be removed.
|
|
function DartObject(o) {
|
|
this.o = o;
|
|
}
|