e5d7ada6e9
Implement without accessing private members of dart:core. Fix language test expecting wrong return value. BUG=http://dartbug.com/15138 R=fschneider@google.com Review URL: https://codereview.chromium.org//114713002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@31140 260f80e4-7a28-3924-810f-c04153c831b5
26 lines
591 B
Dart
26 lines
591 B
Dart
// 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.
|
|
|
|
import "dart:mirrors" show reflect;
|
|
import "package:expect/expect.dart";
|
|
|
|
class GetName {
|
|
set flif(_) => "flif=";
|
|
}
|
|
|
|
int getName(im) => reflect(new GetName()).delegate(im);
|
|
|
|
class C {
|
|
var im;
|
|
noSuchMethod(im) => this.im = im;
|
|
flif() {}
|
|
}
|
|
|
|
main() {
|
|
var c = new C();
|
|
c.flif = 42;
|
|
Expect.equals(42, getName(c.im));
|
|
Expect.equals(42, c.im.positionalArguments[0]);
|
|
}
|