blob: e03643515f989a5cc207c45f2fa8100b1cb13e38 [file] [log] [blame]
// Copyright (c) 2022, 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.
augment void topLevelMethod() {
print('topLevelMethod augmentation 1');
}
augment void externalTopLevelMethod() {
print('externalTopLevelMethod augmentation 1');
}
augment class Class {
augment void instanceMethod() {
print('instanceMethod augmentation 1');
}
augment static void staticMethod() {
print('staticMethod augmentation 1');
}
}