blob: 417f1271fa921f5bef92f31d47dbb6e59e28bfe0 [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
*/
@patch
PatchedClass(this.publicField, this._privateField);
}