blob: 497b83c43f4c97f4a6cd4df7be0c5b681e0ea16f [file] [log] [blame]
// Copyright (c) 2019, 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
class PatchedClass {
final int _privateField;
/*member: PatchedClass.:initializers=[
FieldInitializer(_privateField),
FieldInitializer(publicField),
SuperInitializer]*/
@patch
PatchedClass(this.publicField, this._privateField);
}