5d8b1a1d8c
Review URL: https://codereview.chromium.org//14251021 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21636 260f80e4-7a28-3924-810f-c04153c831b5
26 lines
599 B
Dart
26 lines
599 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=";
|
|
}
|
|
|
|
String 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('flif=', getName(c.im));
|
|
Expect.equals(42, c.im.positionalArguments[0]);
|
|
}
|