67797ef46f
Pure interfaces made `interface`s
implementation classes which cannot/should not be extended made `final`.
A class like `HasHMap` which provides the `Map` interface,
and no implementation except factory constructors
for internal implementations, is made `final`.
Unified {List,Set,Map}{Base,Mixin} into their `Base` class.
Deprecations are retained in comments for now, to be landed
separately. Search for '// TODO: @Deprecated'.
Tested: No new test, only adding restrictions on use.
CoreLibraryReviewExempt: Everybody's on vacation, everybody everywhere.
Change-Id: Ia83b8a3bb20b5b214546b328d4492de6658253db
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/288240
Reviewed-by: Aske Simon Christensen <askesc@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
Commit-Queue: Lasse Nielsen <lrn@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
34 lines
1.2 KiB
Dart
34 lines
1.2 KiB
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.
|
|
|
|
// @dart = 2.7
|
|
|
|
import 'package:compiler/src/util/testing.dart';
|
|
|
|
// Test derived from language_2/generic_methods_dynamic_test/05
|
|
|
|
/*spec.class: global#JSArray:deps=[ArrayIterator,List],explicit=[JSArray,JSArray.E,JSArray<ArrayIterator.E>],implicit=[JSArray.E],needsArgs,test*/
|
|
/*prod.class: global#JSArray:deps=[List],needsArgs*/
|
|
|
|
/*spec.class: global#List:deps=[C.bar,JSArray.markFixedList],explicit=[List<B*>*,List<Object>,List<Object?>,List<String>?,List<markFixedList.T>],needsArgs,test*/
|
|
/*prod.class: global#List:deps=[C.bar],explicit=[List<B*>*],needsArgs*/
|
|
|
|
class A {}
|
|
|
|
/*spec.class: B:explicit=[List<B*>*],implicit=[B]*/
|
|
/*prod.class: B:explicit=[List<B*>*]*/
|
|
class B {}
|
|
|
|
class C {
|
|
/*spec.member: C.bar:explicit=[Iterable<bar.T*>*],implicit=[bar.T],needsArgs,selectors=[Selector(call, bar, arity=1, types=1)],test*/
|
|
/*prod.member: C.bar:needsArgs,selectors=[Selector(call, bar, arity=1, types=1)]*/
|
|
List<T> bar<T>(Iterable<T> t) => <T>[t.first];
|
|
}
|
|
|
|
main() {
|
|
C c = C();
|
|
dynamic x = c.bar<B>(<B>[new B()]);
|
|
makeLive(x is List<B>);
|
|
}
|