blob: 8ee607b6cc2a3a49efa83c6793b9f12f4a8c1d29 [file] [log] [blame]
// Copyright (c) 2015, 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.
/// Provides metadata about GeneratedMessage to dart-protoc-plugin.
/// (Experimental API; subject to change.)
library protobuf.meta;
// List of names which cannot be used in a subclass of GeneratedMessage.
const List<String> GeneratedMessage_reservedNames = const [
'hashCode',
'noSuchMethod',
'copyWith',
'runtimeType',
'toString',
'freeze',
'fromBuffer',
'fromJson',
'hasRequiredFields',
'isInitialized',
'clear',
'getTagNumber',
'check',
'writeToBuffer',
'writeToCodedBufferWriter',
'mergeFromCodedBufferReader',
'mergeFromBuffer',
'writeToJson',
'mergeFromJson',
'writeToJsonMap',
'mergeFromJsonMap',
'addExtension',
'getExtension',
'setExtension',
'hasExtension',
'clearExtension',
'getField',
'getFieldOrNull',
'getDefaultForField',
'setField',
'hasField',
'clearField',
'extensionsAreInitialized',
'mergeFromMessage',
'mergeUnknownFields',
'==',
'info_',
'GeneratedMessage',
'Object',
'eventPlugin',
'createRepeatedField',
'unknownFields',
'clone',
r'$_get',
r'$_getI64',
r'$_getList',
r'$_getN',
r'$_getS',
r'$_has',
r'$_setBool',
r'$_setBytes',
r'$_setString',
r'$_setFloat',
r'$_setDouble',
r'$_setSignedInt32',
r'$_setUnsignedInt32',
r'$_setInt64',
'toBuilder',
'toDebugString',
];