blob: a00b73443072dd5ba7723900d38fe8ac4f03dffa [file] [log] [blame]
// Copyright (c) 2019, 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.
/**
* @assertion If an extension is found to be the one applying to a member
* invocation, then at run-time, the invocation will perform a method invocation
* of the corresponding instance member of the extension, with [this] bound to
* the receiver value and type parameters bound to the types found by static
* inference.
* @description Check that [this] bounds to the receiver value
* @author iarkh@unipro.ru
*/
import "../../Utils/expect.dart";
class A {}
extension ExtendedA on A {
A checkme() => this;
A get checkGetter => this;
void test(A expected) {
Expect.equals(expected, this);
}
}
main() {
A a = A();
Expect.equals(a, a.checkme());
Expect.equals(a, a.checkGetter);
a.test(a);
}