You've already forked dart-viz-sdk
73 lines
3.0 KiB
Dart
73 lines
3.0 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: google/protobuf/source_context.proto
|
|
//
|
|
// @dart = 2.12
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
|
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
/// `SourceContext` represents information about the source of a
|
|
/// protobuf element, like the file in which it is defined.
|
|
class SourceContext extends $pb.GeneratedMessage {
|
|
factory SourceContext({
|
|
$core.String? fileName,
|
|
}) {
|
|
final $result = create();
|
|
if (fileName != null) {
|
|
$result.fileName = fileName;
|
|
}
|
|
return $result;
|
|
}
|
|
SourceContext._() : super();
|
|
factory SourceContext.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
factory SourceContext.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SourceContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'fileName')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
'Will be removed in next major version')
|
|
SourceContext clone() => SourceContext()..mergeFromMessage(this);
|
|
@$core.Deprecated(
|
|
'Using this can add significant overhead to your binary. '
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
'Will be removed in next major version')
|
|
SourceContext copyWith(void Function(SourceContext) updates) => super.copyWith((message) => updates(message as SourceContext)) as SourceContext;
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static SourceContext create() => SourceContext._();
|
|
SourceContext createEmptyInstance() => create();
|
|
static $pb.PbList<SourceContext> createRepeated() => $pb.PbList<SourceContext>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static SourceContext getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SourceContext>(create);
|
|
static SourceContext? _defaultInstance;
|
|
|
|
/// The path-qualified name of the .proto file that contained the associated
|
|
/// protobuf element. For example: `"google/protobuf/source_context.proto"`.
|
|
@$pb.TagNumber(1)
|
|
$core.String get fileName => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set fileName($core.String v) { $_setString(0, v); }
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasFileName() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearFileName() => clearField(1);
|
|
}
|
|
|
|
|
|
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|