5333f30e1e
Change-Id: I34966f96110b6101dbdf96571af12eba2b0e39d1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/389460 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
20 lines
421 B
Dart
20 lines
421 B
Dart
// Copyright (c) 2024, 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.
|
|
|
|
// ignore: import_internal_library
|
|
import 'dart:_internal';
|
|
|
|
@patch
|
|
extension IntExtension on int {
|
|
@patch
|
|
int method1() => 42;
|
|
|
|
int method2() => 43;
|
|
}
|
|
|
|
_method2() {
|
|
0.method1();
|
|
0.method2();
|
|
}
|