58ff41ad33
- to document the change (for the better) with CFE constant Change-Id: I9b6673497fe07ccd4f92fc4c22df0ae3205f72a1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/99152 Reviewed-by: Sigmund Cherem <sigmund@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
33 lines
954 B
Dart
33 lines
954 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.
|
|
|
|
class I1 {}
|
|
|
|
class I2 {}
|
|
|
|
class A implements I1, I2 {}
|
|
|
|
class B implements I1, I2 {}
|
|
|
|
/*element: foo:params=1*/
|
|
@pragma('dart2js:noInline')
|
|
void foo(I1 x) {}
|
|
|
|
/*element: bar:params=1*/
|
|
@pragma('dart2js:noInline')
|
|
void bar(I2 x) {}
|
|
|
|
/*strong.element: main:calls=[call$1(new F.A()),call$1(new F.B()),foo(1),foo(1),main__bar$closure(0),main__bar$closure(0)],params=0*/
|
|
/*omit.element: main:calls=[call$1(new F.A()),call$1(new F.B()),foo(1),foo(1),main__bar$closure(0),main__bar$closure(0)],params=0*/
|
|
/*strongConst.element: main:calls=[bar(1),bar(1),foo(1),foo(1)],params=0*/
|
|
/*omitConst.element: main:calls=[bar(1),bar(1),foo(1),foo(1)],params=0*/
|
|
main() {
|
|
dynamic f = bar;
|
|
|
|
foo(new A());
|
|
foo(new B());
|
|
f(new A());
|
|
f(new B());
|
|
}
|