blob: 6dc7f22e2810fa8792af3a2987958bf7fbd12d6a [file] [log] [blame]
// Copyright (c) 2017, 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:[]*/
main() {
tryInlineOnce();
tryInlineTwice1();
tryInlineTwice2();
}
////////////////////////////////////////////////////////////////////////////////
// Use `tryInline` to inline a top level method once.
////////////////////////////////////////////////////////////////////////////////
/*element: _tryInlineOnce:[tryInlineOnce]*/
@pragma('dart2js:tryInline')
_tryInlineOnce() {}
/*element: tryInlineOnce:[]*/
@pragma('dart2js:noInline')
tryInlineOnce() {
_tryInlineOnce();
}
////////////////////////////////////////////////////////////////////////////////
// Use `tryInline`to inline a top level method twice.
////////////////////////////////////////////////////////////////////////////////
/*element: _tryInlineTwice:[tryInlineTwice1,tryInlineTwice2]*/
@pragma('dart2js:tryInline')
_tryInlineTwice() {}
/*element: tryInlineTwice1:[]*/
@pragma('dart2js:noInline')
tryInlineTwice1() {
_tryInlineTwice();
}
/*element: tryInlineTwice2:[]*/
@pragma('dart2js:noInline')
tryInlineTwice2() {
_tryInlineTwice();
}