You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -17,9 +17,9 @@ import 'package:protobuf/src/protobuf/mixins/well_known.dart' as $mixin;
|
||||
|
||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||
|
||||
/// Wrapper message for `double`.
|
||||
/// Wrapper message for `double`.
|
||||
///
|
||||
/// The JSON representation for `DoubleValue` is JSON number.
|
||||
/// The JSON representation for `DoubleValue` is JSON number.
|
||||
class DoubleValue extends $pb.GeneratedMessage with $mixin.DoubleValueMixin {
|
||||
factory DoubleValue({
|
||||
$core.double? value,
|
||||
@@ -39,15 +39,9 @@ class DoubleValue extends $pb.GeneratedMessage with $mixin.DoubleValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
DoubleValue clone() => DoubleValue()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
DoubleValue copyWith(void Function(DoubleValue) updates) => super.copyWith((message) => updates(message as DoubleValue)) as DoubleValue;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -71,9 +65,9 @@ class DoubleValue extends $pb.GeneratedMessage with $mixin.DoubleValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `float`.
|
||||
/// Wrapper message for `float`.
|
||||
///
|
||||
/// The JSON representation for `FloatValue` is JSON number.
|
||||
/// The JSON representation for `FloatValue` is JSON number.
|
||||
class FloatValue extends $pb.GeneratedMessage with $mixin.FloatValueMixin {
|
||||
factory FloatValue({
|
||||
$core.double? value,
|
||||
@@ -93,15 +87,9 @@ class FloatValue extends $pb.GeneratedMessage with $mixin.FloatValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FloatValue clone() => FloatValue()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FloatValue copyWith(void Function(FloatValue) updates) => super.copyWith((message) => updates(message as FloatValue)) as FloatValue;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -125,9 +113,9 @@ class FloatValue extends $pb.GeneratedMessage with $mixin.FloatValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `int64`.
|
||||
/// Wrapper message for `int64`.
|
||||
///
|
||||
/// The JSON representation for `Int64Value` is JSON string.
|
||||
/// The JSON representation for `Int64Value` is JSON string.
|
||||
class Int64Value extends $pb.GeneratedMessage with $mixin.Int64ValueMixin {
|
||||
factory Int64Value({
|
||||
$fixnum.Int64? value,
|
||||
@@ -147,15 +135,9 @@ class Int64Value extends $pb.GeneratedMessage with $mixin.Int64ValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
Int64Value clone() => Int64Value()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
Int64Value copyWith(void Function(Int64Value) updates) => super.copyWith((message) => updates(message as Int64Value)) as Int64Value;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -179,9 +161,9 @@ class Int64Value extends $pb.GeneratedMessage with $mixin.Int64ValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `uint64`.
|
||||
/// Wrapper message for `uint64`.
|
||||
///
|
||||
/// The JSON representation for `UInt64Value` is JSON string.
|
||||
/// The JSON representation for `UInt64Value` is JSON string.
|
||||
class UInt64Value extends $pb.GeneratedMessage with $mixin.UInt64ValueMixin {
|
||||
factory UInt64Value({
|
||||
$fixnum.Int64? value,
|
||||
@@ -201,15 +183,9 @@ class UInt64Value extends $pb.GeneratedMessage with $mixin.UInt64ValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UInt64Value clone() => UInt64Value()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UInt64Value copyWith(void Function(UInt64Value) updates) => super.copyWith((message) => updates(message as UInt64Value)) as UInt64Value;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -233,9 +209,9 @@ class UInt64Value extends $pb.GeneratedMessage with $mixin.UInt64ValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `int32`.
|
||||
/// Wrapper message for `int32`.
|
||||
///
|
||||
/// The JSON representation for `Int32Value` is JSON number.
|
||||
/// The JSON representation for `Int32Value` is JSON number.
|
||||
class Int32Value extends $pb.GeneratedMessage with $mixin.Int32ValueMixin {
|
||||
factory Int32Value({
|
||||
$core.int? value,
|
||||
@@ -255,15 +231,9 @@ class Int32Value extends $pb.GeneratedMessage with $mixin.Int32ValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
Int32Value clone() => Int32Value()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
Int32Value copyWith(void Function(Int32Value) updates) => super.copyWith((message) => updates(message as Int32Value)) as Int32Value;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -287,9 +257,9 @@ class Int32Value extends $pb.GeneratedMessage with $mixin.Int32ValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `uint32`.
|
||||
/// Wrapper message for `uint32`.
|
||||
///
|
||||
/// The JSON representation for `UInt32Value` is JSON number.
|
||||
/// The JSON representation for `UInt32Value` is JSON number.
|
||||
class UInt32Value extends $pb.GeneratedMessage with $mixin.UInt32ValueMixin {
|
||||
factory UInt32Value({
|
||||
$core.int? value,
|
||||
@@ -309,15 +279,9 @@ class UInt32Value extends $pb.GeneratedMessage with $mixin.UInt32ValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UInt32Value clone() => UInt32Value()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UInt32Value copyWith(void Function(UInt32Value) updates) => super.copyWith((message) => updates(message as UInt32Value)) as UInt32Value;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -341,9 +305,9 @@ class UInt32Value extends $pb.GeneratedMessage with $mixin.UInt32ValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `bool`.
|
||||
/// Wrapper message for `bool`.
|
||||
///
|
||||
/// The JSON representation for `BoolValue` is JSON `true` and `false`.
|
||||
/// The JSON representation for `BoolValue` is JSON `true` and `false`.
|
||||
class BoolValue extends $pb.GeneratedMessage with $mixin.BoolValueMixin {
|
||||
factory BoolValue({
|
||||
$core.bool? value,
|
||||
@@ -363,15 +327,9 @@ class BoolValue extends $pb.GeneratedMessage with $mixin.BoolValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
BoolValue clone() => BoolValue()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
BoolValue copyWith(void Function(BoolValue) updates) => super.copyWith((message) => updates(message as BoolValue)) as BoolValue;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -395,9 +353,9 @@ class BoolValue extends $pb.GeneratedMessage with $mixin.BoolValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `string`.
|
||||
/// Wrapper message for `string`.
|
||||
///
|
||||
/// The JSON representation for `StringValue` is JSON string.
|
||||
/// The JSON representation for `StringValue` is JSON string.
|
||||
class StringValue extends $pb.GeneratedMessage with $mixin.StringValueMixin {
|
||||
factory StringValue({
|
||||
$core.String? value,
|
||||
@@ -417,15 +375,9 @@ class StringValue extends $pb.GeneratedMessage with $mixin.StringValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
StringValue clone() => StringValue()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
StringValue copyWith(void Function(StringValue) updates) => super.copyWith((message) => updates(message as StringValue)) as StringValue;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
@@ -449,9 +401,9 @@ class StringValue extends $pb.GeneratedMessage with $mixin.StringValueMixin {
|
||||
void clearValue() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Wrapper message for `bytes`.
|
||||
/// Wrapper message for `bytes`.
|
||||
///
|
||||
/// The JSON representation for `BytesValue` is JSON string.
|
||||
/// The JSON representation for `BytesValue` is JSON string.
|
||||
class BytesValue extends $pb.GeneratedMessage with $mixin.BytesValueMixin {
|
||||
factory BytesValue({
|
||||
$core.List<$core.int>? value,
|
||||
@@ -471,15 +423,9 @@ class BytesValue extends $pb.GeneratedMessage with $mixin.BytesValueMixin {
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
BytesValue clone() => BytesValue()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
BytesValue copyWith(void Function(BytesValue) updates) => super.copyWith((message) => updates(message as BytesValue)) as BytesValue;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
Reference in New Issue
Block a user