c5f69dff2d
Closes #32835 Change-Id: Ief2096544e01f74e6cc52abd6131a24a10ffe75f Reviewed-on: https://dart-review.googlesource.com/50680 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Sigmund Cherem <sigmund@google.com>
34 lines
979 B
Dart
34 lines
979 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.
|
|
|
|
/*element: main:[null]*/
|
|
main() {
|
|
closurizedCallToString();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Implicit/explicit .call on instance method tear-off.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/*element: Class.:[exact=Class]*/
|
|
class Class {
|
|
/*element: Class.method:[exact=JSUInt31]*/
|
|
method() => 42;
|
|
}
|
|
|
|
/*element: closurizedCallToString:[exact=JSString]*/
|
|
closurizedCallToString() {
|
|
var c = new Class();
|
|
var local = c. /*[exact=Class]*/ method;
|
|
local. /*invoke: [subclass=Closure]*/ toString();
|
|
local();
|
|
local
|
|
. /*invoke: [subclass=Closure]*/
|
|
toString();
|
|
local.call();
|
|
return local
|
|
. /*invoke: [subclass=Closure]*/
|
|
toString();
|
|
}
|