Files
sdk/pkg/front_end/testcases/extensions/patch/patch_lib.dart
T
Johnni Winther 5333f30e1e [cfe] Add introductory to SourceExtensionBuilder
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>
2024-10-10 12:09:20 +00:00

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();
}