eee8787a8d
class in a foreign library. This CL changes the predicate which is used to decide whether to generate noSuchMethod forwarders such that it returns true whenever the class in question has a user defined no such method or the enclosing library of the class is different from that of the member. Closes https://github.com/dart-lang/sdk/issues/33727 Change-Id: I0ffcbb8c8bdd69e4261bcefce2251d31babc19cf Reviewed-on: https://dart-review.googlesource.com/c/79209 Commit-Queue: Daniel Hillerström <hillerstrom@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
14 lines
371 B
Dart
14 lines
371 B
Dart
// Copyright (c) 2018, 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.
|
|
|
|
// Companion library for private_method_tearoff_test.dart.
|
|
|
|
class Bar {
|
|
void _f() {}
|
|
}
|
|
|
|
String baz(Bar bar) {
|
|
return bar._f.runtimeType.toString();
|
|
}
|