Index: pkg/analyzer/lib/src/summary/format.dart |
diff --git a/pkg/analyzer/lib/src/summary/format.dart b/pkg/analyzer/lib/src/summary/format.dart |
index 641287e85e68b90e4f18592854662127010f11a3..bec76af9e62414684fc27b1a369cbb07d566a120 100644 |
--- a/pkg/analyzer/lib/src/summary/format.dart |
+++ b/pkg/analyzer/lib/src/summary/format.dart |
@@ -157,8 +157,8 @@ class CacheAnalysisErrorBuilder extends Object with _CacheAnalysisErrorMixin imp |
* correction information for this error. The correction should indicate how |
* the user can fix the error. |
*/ |
- void set correction(String _value) { |
- _correction = _value; |
+ void set correction(String value) { |
+ this._correction = value; |
} |
@override |
@@ -167,8 +167,8 @@ class CacheAnalysisErrorBuilder extends Object with _CacheAnalysisErrorMixin imp |
/** |
* The unique name of the error code. |
*/ |
- void set errorCodeUniqueName(String _value) { |
- _errorCodeUniqueName = _value; |
+ void set errorCodeUniqueName(String value) { |
+ this._errorCodeUniqueName = value; |
} |
@override |
@@ -177,9 +177,9 @@ class CacheAnalysisErrorBuilder extends Object with _CacheAnalysisErrorMixin imp |
/** |
* Length of the error range. |
*/ |
- void set length(int _value) { |
- assert(_value == null || _value >= 0); |
- _length = _value; |
+ void set length(int value) { |
+ assert(value == null || value >= 0); |
+ this._length = value; |
} |
@override |
@@ -189,8 +189,8 @@ class CacheAnalysisErrorBuilder extends Object with _CacheAnalysisErrorMixin imp |
* The message to be displayed for this error. The message should indicate |
* what is wrong and why it is wrong. |
*/ |
- void set message(String _value) { |
- _message = _value; |
+ void set message(String value) { |
+ this._message = value; |
} |
@override |
@@ -199,9 +199,9 @@ class CacheAnalysisErrorBuilder extends Object with _CacheAnalysisErrorMixin imp |
/** |
* Offset of the error range relative to the beginning of the file. |
*/ |
- void set offset(int _value) { |
- assert(_value == null || _value >= 0); |
- _offset = _value; |
+ void set offset(int value) { |
+ assert(value == null || value >= 0); |
+ this._offset = value; |
} |
CacheAnalysisErrorBuilder({String correction, String errorCodeUniqueName, int length, String message, int offset}) |
@@ -349,8 +349,8 @@ class CacheSourceContentBuilder extends Object with _CacheSourceContentMixin imp |
* The list of exported URIs, e.g. `dart:core`, or `foo/bar.dart`, |
* or `package:foo/bar.dart`. Empty if [kind] is [CacheSourceKind.part]. |
*/ |
- void set exportedUris(List<String> _value) { |
- _exportedUris = _value; |
+ void set exportedUris(List<String> value) { |
+ this._exportedUris = value; |
} |
@override |
@@ -360,8 +360,8 @@ class CacheSourceContentBuilder extends Object with _CacheSourceContentMixin imp |
* The list of explicitly imported URIs, e.g. `dart:core`, or `foo/bar.dart`, |
* or `package:foo/bar.dart`. Empty if [kind] is [CacheSourceKind.part]. |
*/ |
- void set importedUris(List<String> _value) { |
- _importedUris = _value; |
+ void set importedUris(List<String> value) { |
+ this._importedUris = value; |
} |
@override |
@@ -370,8 +370,8 @@ class CacheSourceContentBuilder extends Object with _CacheSourceContentMixin imp |
/** |
* The kind of the source. |
*/ |
- void set kind(idl.CacheSourceKind _value) { |
- _kind = _value; |
+ void set kind(idl.CacheSourceKind value) { |
+ this._kind = value; |
} |
@override |
@@ -381,8 +381,8 @@ class CacheSourceContentBuilder extends Object with _CacheSourceContentMixin imp |
* The list of part URIs, e.g. `foo/bar.dart`. Empty if [kind] is |
* [CacheSourceKind.part]. |
*/ |
- void set partUris(List<String> _value) { |
- _partUris = _value; |
+ void set partUris(List<String> value) { |
+ this._partUris = value; |
} |
CacheSourceContentBuilder({List<String> exportedUris, List<String> importedUris, idl.CacheSourceKind kind, List<String> partUris}) |
@@ -543,8 +543,8 @@ class CacheSourceErrorsInLibraryBuilder extends Object with _CacheSourceErrorsIn |
/** |
* The list of errors in the source in the library. |
*/ |
- void set errors(List<CacheAnalysisErrorBuilder> _value) { |
- _errors = _value; |
+ void set errors(List<CacheAnalysisErrorBuilder> value) { |
+ this._errors = value; |
} |
CacheSourceErrorsInLibraryBuilder({List<CacheAnalysisErrorBuilder> errors}) |
@@ -643,9 +643,9 @@ class CodeRangeBuilder extends Object with _CodeRangeMixin implements idl.CodeRa |
/** |
* Length of the element code. |
*/ |
- void set length(int _value) { |
- assert(_value == null || _value >= 0); |
- _length = _value; |
+ void set length(int value) { |
+ assert(value == null || value >= 0); |
+ this._length = value; |
} |
@override |
@@ -654,9 +654,9 @@ class CodeRangeBuilder extends Object with _CodeRangeMixin implements idl.CodeRa |
/** |
* Offset of the element code relative to the beginning of the file. |
*/ |
- void set offset(int _value) { |
- assert(_value == null || _value >= 0); |
- _offset = _value; |
+ void set offset(int value) { |
+ assert(value == null || value >= 0); |
+ this._offset = value; |
} |
CodeRangeBuilder({int length, int offset}) |
@@ -771,9 +771,9 @@ class EntityRefBuilder extends Object with _EntityRefMixin implements idl.Entity |
* generic class, then the type arguments in [typeArguments] are applied |
* first to the class and then to the method. |
*/ |
- void set implicitFunctionTypeIndices(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _implicitFunctionTypeIndices = _value; |
+ void set implicitFunctionTypeIndices(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._implicitFunctionTypeIndices = value; |
} |
@override |
@@ -798,9 +798,9 @@ class EntityRefBuilder extends Object with _EntityRefMixin implements idl.Entity |
* If the type being referred to is not a type parameter, [paramReference] is |
* zero. |
*/ |
- void set paramReference(int _value) { |
- assert(_value == null || _value >= 0); |
- _paramReference = _value; |
+ void set paramReference(int value) { |
+ assert(value == null || value >= 0); |
+ this._paramReference = value; |
} |
@override |
@@ -810,9 +810,9 @@ class EntityRefBuilder extends Object with _EntityRefMixin implements idl.Entity |
* Index into [UnlinkedUnit.references] for the entity being referred to, or |
* zero if this is a reference to a type parameter. |
*/ |
- void set reference(int _value) { |
- assert(_value == null || _value >= 0); |
- _reference = _value; |
+ void set reference(int value) { |
+ assert(value == null || value >= 0); |
+ this._reference = value; |
} |
@override |
@@ -825,9 +825,9 @@ class EntityRefBuilder extends Object with _EntityRefMixin implements idl.Entity |
* |
* Otherwise zero. |
*/ |
- void set slot(int _value) { |
- assert(_value == null || _value >= 0); |
- _slot = _value; |
+ void set slot(int value) { |
+ assert(value == null || value >= 0); |
+ this._slot = value; |
} |
@override |
@@ -839,8 +839,8 @@ class EntityRefBuilder extends Object with _EntityRefMixin implements idl.Entity |
* synthesized by a LUB computation), the function parameters. Otherwise |
* empty. |
*/ |
- void set syntheticParams(List<UnlinkedParamBuilder> _value) { |
- _syntheticParams = _value; |
+ void set syntheticParams(List<UnlinkedParamBuilder> value) { |
+ this._syntheticParams = value; |
} |
@override |
@@ -852,8 +852,8 @@ class EntityRefBuilder extends Object with _EntityRefMixin implements idl.Entity |
* synthesized by a LUB computation), the return type of the function. |
* Otherwise `null`. |
*/ |
- void set syntheticReturnType(EntityRefBuilder _value) { |
- _syntheticReturnType = _value; |
+ void set syntheticReturnType(EntityRefBuilder value) { |
+ this._syntheticReturnType = value; |
} |
@override |
@@ -863,8 +863,8 @@ class EntityRefBuilder extends Object with _EntityRefMixin implements idl.Entity |
* If this is an instantiation of a generic type or generic executable, the |
* type arguments used to instantiate it (if any). |
*/ |
- void set typeArguments(List<EntityRefBuilder> _value) { |
- _typeArguments = _value; |
+ void set typeArguments(List<EntityRefBuilder> value) { |
+ this._typeArguments = value; |
} |
EntityRefBuilder({List<int> implicitFunctionTypeIndices, int paramReference, int reference, int slot, List<UnlinkedParamBuilder> syntheticParams, EntityRefBuilder syntheticReturnType, List<EntityRefBuilder> typeArguments}) |
@@ -1067,8 +1067,8 @@ class LinkedDependencyBuilder extends Object with _LinkedDependencyMixin impleme |
* URI for the compilation units listed in the library's `part` declarations. |
* These URIs are relative to the importing library. |
*/ |
- void set parts(List<String> _value) { |
- _parts = _value; |
+ void set parts(List<String> value) { |
+ this._parts = value; |
} |
@override |
@@ -1081,8 +1081,8 @@ class LinkedDependencyBuilder extends Object with _LinkedDependencyMixin impleme |
* `d/e.dart`, the URI listed for `a.dart`'s dependency on `e.dart` will be |
* `b/d/e.dart`. |
*/ |
- void set uri(String _value) { |
- _uri = _value; |
+ void set uri(String value) { |
+ this._uri = value; |
} |
LinkedDependencyBuilder({List<String> parts, String uri}) |
@@ -1191,9 +1191,9 @@ class LinkedExportNameBuilder extends Object with _LinkedExportNameMixin impleme |
* Index into [LinkedLibrary.dependencies] for the library in which the |
* entity is defined. |
*/ |
- void set dependency(int _value) { |
- assert(_value == null || _value >= 0); |
- _dependency = _value; |
+ void set dependency(int value) { |
+ assert(value == null || value >= 0); |
+ this._dependency = value; |
} |
@override |
@@ -1202,8 +1202,8 @@ class LinkedExportNameBuilder extends Object with _LinkedExportNameMixin impleme |
/** |
* The kind of the entity being referred to. |
*/ |
- void set kind(idl.ReferenceKind _value) { |
- _kind = _value; |
+ void set kind(idl.ReferenceKind value) { |
+ this._kind = value; |
} |
@override |
@@ -1213,8 +1213,8 @@ class LinkedExportNameBuilder extends Object with _LinkedExportNameMixin impleme |
* Name of the exported entity. For an exported setter, this name includes |
* the trailing '='. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -1226,9 +1226,9 @@ class LinkedExportNameBuilder extends Object with _LinkedExportNameMixin impleme |
* zero represents the defining compilation unit, and nonzero values |
* represent parts in the order of the corresponding `part` declarations. |
*/ |
- void set unit(int _value) { |
- assert(_value == null || _value >= 0); |
- _unit = _value; |
+ void set unit(int value) { |
+ assert(value == null || value >= 0); |
+ this._unit = value; |
} |
LinkedExportNameBuilder({int dependency, idl.ReferenceKind kind, String name, int unit}) |
@@ -1369,8 +1369,8 @@ class LinkedLibraryBuilder extends Object with _LinkedLibraryMixin implements id |
* anti-dependency (e.g. the result of type propagation or type inference |
* depends on the lack of a certain declaration in the library). |
*/ |
- void set dependencies(List<LinkedDependencyBuilder> _value) { |
- _dependencies = _value; |
+ void set dependencies(List<LinkedDependencyBuilder> value) { |
+ this._dependencies = value; |
} |
@override |
@@ -1380,9 +1380,9 @@ class LinkedLibraryBuilder extends Object with _LinkedLibraryMixin implements id |
* For each export in [UnlinkedUnit.exports], an index into [dependencies] |
* of the library being exported. |
*/ |
- void set exportDependencies(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _exportDependencies = _value; |
+ void set exportDependencies(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._exportDependencies = value; |
} |
@override |
@@ -1395,8 +1395,8 @@ class LinkedLibraryBuilder extends Object with _LinkedLibraryMixin implements id |
* |
* Sorted by name. |
*/ |
- void set exportNames(List<LinkedExportNameBuilder> _value) { |
- _exportNames = _value; |
+ void set exportNames(List<LinkedExportNameBuilder> value) { |
+ this._exportNames = value; |
} |
@override |
@@ -1406,8 +1406,8 @@ class LinkedLibraryBuilder extends Object with _LinkedLibraryMixin implements id |
* Indicates whether this library was summarized in "fallback mode". If |
* true, all other fields in the data structure have their default values. |
*/ |
- void set fallbackMode(bool _value) { |
- _fallbackMode = _value; |
+ void set fallbackMode(bool value) { |
+ this._fallbackMode = value; |
} |
@override |
@@ -1417,9 +1417,9 @@ class LinkedLibraryBuilder extends Object with _LinkedLibraryMixin implements id |
* For each import in [UnlinkedUnit.imports], an index into [dependencies] |
* of the library being imported. |
*/ |
- void set importDependencies(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _importDependencies = _value; |
+ void set importDependencies(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._importDependencies = value; |
} |
@override |
@@ -1430,9 +1430,9 @@ class LinkedLibraryBuilder extends Object with _LinkedLibraryMixin implements id |
* dependencies (that is, the number of libraries in the direct imports plus |
* the transitive closure of exports, plus the library itself). |
*/ |
- void set numPrelinkedDependencies(int _value) { |
- assert(_value == null || _value >= 0); |
- _numPrelinkedDependencies = _value; |
+ void set numPrelinkedDependencies(int value) { |
+ assert(value == null || value >= 0); |
+ this._numPrelinkedDependencies = value; |
} |
@override |
@@ -1444,8 +1444,8 @@ class LinkedLibraryBuilder extends Object with _LinkedLibraryMixin implements id |
* followed by the summary of each part, in the order of the `part` |
* declarations in the defining compilation unit. |
*/ |
- void set units(List<LinkedUnitBuilder> _value) { |
- _units = _value; |
+ void set units(List<LinkedUnitBuilder> value) { |
+ this._units = value; |
} |
LinkedLibraryBuilder({List<LinkedDependencyBuilder> dependencies, List<int> exportDependencies, List<LinkedExportNameBuilder> exportNames, bool fallbackMode, List<int> importDependencies, int numPrelinkedDependencies, List<LinkedUnitBuilder> units}) |
@@ -1687,9 +1687,9 @@ class LinkedReferenceBuilder extends Object with _LinkedReferenceMixin implement |
* LinkedUnit.references[i].containingReference != 0, then |
* LinkedUnit.references[i].containingReference < i. |
*/ |
- void set containingReference(int _value) { |
- assert(_value == null || _value >= 0); |
- _containingReference = _value; |
+ void set containingReference(int value) { |
+ assert(value == null || value >= 0); |
+ this._containingReference = value; |
} |
@override |
@@ -1702,9 +1702,9 @@ class LinkedReferenceBuilder extends Object with _LinkedReferenceMixin implement |
* Zero if this entity is contained within another entity (e.g. a class |
* member), or if [kind] is [ReferenceKind.prefix]. |
*/ |
- void set dependency(int _value) { |
- assert(_value == null || _value >= 0); |
- _dependency = _value; |
+ void set dependency(int value) { |
+ assert(value == null || value >= 0); |
+ this._dependency = value; |
} |
@override |
@@ -1714,8 +1714,8 @@ class LinkedReferenceBuilder extends Object with _LinkedReferenceMixin implement |
* The kind of the entity being referred to. For the pseudo-types `dynamic` |
* and `void`, the kind is [ReferenceKind.classOrEnum]. |
*/ |
- void set kind(idl.ReferenceKind _value) { |
- _kind = _value; |
+ void set kind(idl.ReferenceKind value) { |
+ this._kind = value; |
} |
@override |
@@ -1728,9 +1728,9 @@ class LinkedReferenceBuilder extends Object with _LinkedReferenceMixin implement |
* [ReferenceKind.variable], the index of the variable within |
* [UnlinkedExecutable.localVariables]. Otherwise zero. |
*/ |
- void set localIndex(int _value) { |
- assert(_value == null || _value >= 0); |
- _localIndex = _value; |
+ void set localIndex(int value) { |
+ assert(value == null || value >= 0); |
+ this._localIndex = value; |
} |
@override |
@@ -1741,8 +1741,8 @@ class LinkedReferenceBuilder extends Object with _LinkedReferenceMixin implement |
* name of the entity being referred to. For the pseudo-type `dynamic`, the |
* string is "dynamic". For the pseudo-type `void`, the string is "void". |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -1753,9 +1753,9 @@ class LinkedReferenceBuilder extends Object with _LinkedReferenceMixin implement |
* it declares (does not include type parameters of enclosing entities). |
* Otherwise zero. |
*/ |
- void set numTypeParameters(int _value) { |
- assert(_value == null || _value >= 0); |
- _numTypeParameters = _value; |
+ void set numTypeParameters(int value) { |
+ assert(value == null || value >= 0); |
+ this._numTypeParameters = value; |
} |
@override |
@@ -1770,9 +1770,9 @@ class LinkedReferenceBuilder extends Object with _LinkedReferenceMixin implement |
* Zero if this entity is contained within another entity (e.g. a class |
* member). |
*/ |
- void set unit(int _value) { |
- assert(_value == null || _value >= 0); |
- _unit = _value; |
+ void set unit(int value) { |
+ assert(value == null || value >= 0); |
+ this._unit = value; |
} |
LinkedReferenceBuilder({int containingReference, int dependency, idl.ReferenceKind kind, int localIndex, String name, int numTypeParameters, int unit}) |
@@ -1939,9 +1939,9 @@ class LinkedUnitBuilder extends Object with _LinkedUnitMixin implements idl.Link |
* List of slot ids (referring to [UnlinkedExecutable.constCycleSlot]) |
* corresponding to const constructors that are part of cycles. |
*/ |
- void set constCycles(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _constCycles = _value; |
+ void set constCycles(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._constCycles = value; |
} |
@override |
@@ -1955,8 +1955,8 @@ class LinkedUnitBuilder extends Object with _LinkedUnitMixin implements idl.Link |
* additional elements are references that are only referred to implicitly |
* (e.g. elements involved in inferred or propagated types). |
*/ |
- void set references(List<LinkedReferenceBuilder> _value) { |
- _references = _value; |
+ void set references(List<LinkedReferenceBuilder> value) { |
+ this._references = value; |
} |
@override |
@@ -1966,8 +1966,8 @@ class LinkedUnitBuilder extends Object with _LinkedUnitMixin implements idl.Link |
* List associating slot ids found inside the unlinked summary for the |
* compilation unit with propagated and inferred types. |
*/ |
- void set types(List<EntityRefBuilder> _value) { |
- _types = _value; |
+ void set types(List<EntityRefBuilder> value) { |
+ this._types = value; |
} |
LinkedUnitBuilder({List<int> constCycles, List<LinkedReferenceBuilder> references, List<EntityRefBuilder> types}) |
@@ -2116,8 +2116,8 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
* including this one). This can be used to identify when the API of a |
* package may have changed. |
*/ |
- void set apiSignature(String _value) { |
- _apiSignature = _value; |
+ void set apiSignature(String value) { |
+ this._apiSignature = value; |
} |
@override |
@@ -2126,8 +2126,8 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
/** |
* Information about the packages this package depends on, if known. |
*/ |
- void set dependencies(List<PackageDependencyInfoBuilder> _value) { |
- _dependencies = _value; |
+ void set dependencies(List<PackageDependencyInfoBuilder> value) { |
+ this._dependencies = value; |
} |
@override |
@@ -2136,8 +2136,8 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
/** |
* Linked libraries. |
*/ |
- void set linkedLibraries(List<LinkedLibraryBuilder> _value) { |
- _linkedLibraries = _value; |
+ void set linkedLibraries(List<LinkedLibraryBuilder> value) { |
+ this._linkedLibraries = value; |
} |
@override |
@@ -2147,8 +2147,8 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
* The list of URIs of items in [linkedLibraries], e.g. `dart:core` or |
* `package:foo/bar.dart`. |
*/ |
- void set linkedLibraryUris(List<String> _value) { |
- _linkedLibraryUris = _value; |
+ void set linkedLibraryUris(List<String> value) { |
+ this._linkedLibraryUris = value; |
} |
@override |
@@ -2158,9 +2158,9 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
* Major version of the summary format. See |
* [PackageBundleAssembler.currentMajorVersion]. |
*/ |
- void set majorVersion(int _value) { |
- assert(_value == null || _value >= 0); |
- _majorVersion = _value; |
+ void set majorVersion(int value) { |
+ assert(value == null || value >= 0); |
+ this._majorVersion = value; |
} |
@override |
@@ -2170,9 +2170,9 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
* Minor version of the summary format. See |
* [PackageBundleAssembler.currentMinorVersion]. |
*/ |
- void set minorVersion(int _value) { |
- assert(_value == null || _value >= 0); |
- _minorVersion = _value; |
+ void set minorVersion(int value) { |
+ assert(value == null || value >= 0); |
+ this._minorVersion = value; |
} |
@override |
@@ -2182,8 +2182,8 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
* List of MD5 hashes of the files listed in [unlinkedUnitUris]. Each hash |
* is encoded as a hexadecimal string using lower case letters. |
*/ |
- void set unlinkedUnitHashes(List<String> _value) { |
- _unlinkedUnitHashes = _value; |
+ void set unlinkedUnitHashes(List<String> value) { |
+ this._unlinkedUnitHashes = value; |
} |
@override |
@@ -2192,8 +2192,8 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
/** |
* Unlinked information for the compilation units constituting the package. |
*/ |
- void set unlinkedUnits(List<UnlinkedUnitBuilder> _value) { |
- _unlinkedUnits = _value; |
+ void set unlinkedUnits(List<UnlinkedUnitBuilder> value) { |
+ this._unlinkedUnits = value; |
} |
@override |
@@ -2202,8 +2202,8 @@ class PackageBundleBuilder extends Object with _PackageBundleMixin implements id |
/** |
* The list of URIs of items in [unlinkedUnits], e.g. `dart:core/bool.dart`. |
*/ |
- void set unlinkedUnitUris(List<String> _value) { |
- _unlinkedUnitUris = _value; |
+ void set unlinkedUnitUris(List<String> value) { |
+ this._unlinkedUnitUris = value; |
} |
PackageBundleBuilder({String apiSignature, List<PackageDependencyInfoBuilder> dependencies, List<LinkedLibraryBuilder> linkedLibraries, List<String> linkedLibraryUris, int majorVersion, int minorVersion, List<String> unlinkedUnitHashes, List<UnlinkedUnitBuilder> unlinkedUnits, List<String> unlinkedUnitUris}) |
@@ -2463,8 +2463,8 @@ class PackageDependencyInfoBuilder extends Object with _PackageDependencyInfoMix |
/** |
* API signature of this dependency. |
*/ |
- void set apiSignature(String _value) { |
- _apiSignature = _value; |
+ void set apiSignature(String value) { |
+ this._apiSignature = value; |
} |
@override |
@@ -2475,8 +2475,8 @@ class PackageDependencyInfoBuilder extends Object with _PackageDependencyInfoMix |
* "package:<package_name>/...", a list of all such package names, sorted |
* lexicographically. Otherwise empty. |
*/ |
- void set includedPackageNames(List<String> _value) { |
- _includedPackageNames = _value; |
+ void set includedPackageNames(List<String> value) { |
+ this._includedPackageNames = value; |
} |
@override |
@@ -2486,8 +2486,8 @@ class PackageDependencyInfoBuilder extends Object with _PackageDependencyInfoMix |
* Indicates whether this dependency summarizes any files whose URI takes the |
* form "dart:...". |
*/ |
- void set includesDartUris(bool _value) { |
- _includesDartUris = _value; |
+ void set includesDartUris(bool value) { |
+ this._includesDartUris = value; |
} |
@override |
@@ -2497,8 +2497,8 @@ class PackageDependencyInfoBuilder extends Object with _PackageDependencyInfoMix |
* Indicates whether this dependency summarizes any files whose URI takes the |
* form "file:...". |
*/ |
- void set includesFileUris(bool _value) { |
- _includesFileUris = _value; |
+ void set includesFileUris(bool value) { |
+ this._includesFileUris = value; |
} |
@override |
@@ -2513,8 +2513,8 @@ class PackageDependencyInfoBuilder extends Object with _PackageDependencyInfoMix |
* |
* Absent if the path is not known. |
*/ |
- void set summaryPath(String _value) { |
- _summaryPath = _value; |
+ void set summaryPath(String value) { |
+ this._summaryPath = value; |
} |
PackageDependencyInfoBuilder({String apiSignature, List<String> includedPackageNames, bool includesDartUris, bool includesFileUris, String summaryPath}) |
@@ -2674,8 +2674,8 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* Each item of this list corresponds to a unique referenced element. It is |
* the kind of the synthetic element. |
*/ |
- void set elementKinds(List<idl.IndexSyntheticElementKind> _value) { |
- _elementKinds = _value; |
+ void set elementKinds(List<idl.IndexSyntheticElementKind> value) { |
+ this._elementKinds = value; |
} |
@override |
@@ -2688,9 +2688,9 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* client can quickly check whether an element is referenced in this |
* [PackageIndex]. |
*/ |
- void set elementNameClassMemberIds(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _elementNameClassMemberIds = _value; |
+ void set elementNameClassMemberIds(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._elementNameClassMemberIds = value; |
} |
@override |
@@ -2703,9 +2703,9 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* client can quickly check whether an element is referenced in this |
* [PackageIndex]. |
*/ |
- void set elementNameParameterIds(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _elementNameParameterIds = _value; |
+ void set elementNameParameterIds(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._elementNameParameterIds = value; |
} |
@override |
@@ -2717,9 +2717,9 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* the unit. The list is sorted in ascending order, so that the client can |
* quickly check whether an element is referenced in this [PackageIndex]. |
*/ |
- void set elementNameUnitMemberIds(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _elementNameUnitMemberIds = _value; |
+ void set elementNameUnitMemberIds(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._elementNameUnitMemberIds = value; |
} |
@override |
@@ -2730,9 +2730,9 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* the index into [unitLibraryUris] and [unitUnitUris] for the library |
* specific unit where the element is declared. |
*/ |
- void set elementUnits(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _elementUnits = _value; |
+ void set elementUnits(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._elementUnits = value; |
} |
@override |
@@ -2743,8 +2743,8 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* sorted in ascending order, so that the client can quickly check the |
* presence of a string in this [PackageIndex]. |
*/ |
- void set strings(List<String> _value) { |
- _strings = _value; |
+ void set strings(List<String> value) { |
+ this._strings = value; |
} |
@override |
@@ -2755,9 +2755,9 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* specific unit referenced in the [PackageIndex]. It is an index into |
* [strings] list. |
*/ |
- void set unitLibraryUris(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _unitLibraryUris = _value; |
+ void set unitLibraryUris(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._unitLibraryUris = value; |
} |
@override |
@@ -2766,8 +2766,8 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
/** |
* List of indexes of each unit in this [PackageIndex]. |
*/ |
- void set units(List<UnitIndexBuilder> _value) { |
- _units = _value; |
+ void set units(List<UnitIndexBuilder> value) { |
+ this._units = value; |
} |
@override |
@@ -2778,9 +2778,9 @@ class PackageIndexBuilder extends Object with _PackageIndexMixin implements idl. |
* specific unit referenced in the [PackageIndex]. It is an index into |
* [strings] list. |
*/ |
- void set unitUnitUris(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _unitUnitUris = _value; |
+ void set unitUnitUris(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._unitUnitUris = value; |
} |
PackageIndexBuilder({List<idl.IndexSyntheticElementKind> elementKinds, List<int> elementNameClassMemberIds, List<int> elementNameParameterIds, List<int> elementNameUnitMemberIds, List<int> elementUnits, List<String> strings, List<int> unitLibraryUris, List<UnitIndexBuilder> units, List<int> unitUnitUris}) |
@@ -3090,8 +3090,8 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
/** |
* Each item of this list is the kind of an element defined in this unit. |
*/ |
- void set definedNameKinds(List<idl.IndexNameKind> _value) { |
- _definedNameKinds = _value; |
+ void set definedNameKinds(List<idl.IndexNameKind> value) { |
+ this._definedNameKinds = value; |
} |
@override |
@@ -3101,9 +3101,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* Each item of this list is the name offset of an element defined in this |
* unit relative to the beginning of the file. |
*/ |
- void set definedNameOffsets(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _definedNameOffsets = _value; |
+ void set definedNameOffsets(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._definedNameOffsets = value; |
} |
@override |
@@ -3115,9 +3115,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* ascending order, so that the client can quickly find name definitions in |
* this [UnitIndex]. |
*/ |
- void set definedNames(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _definedNames = _value; |
+ void set definedNames(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._definedNames = value; |
} |
@override |
@@ -3127,9 +3127,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* Index into [PackageIndex.unitLibraryUris] and [PackageIndex.unitUnitUris] |
* for the library specific unit that corresponds to this [UnitIndex]. |
*/ |
- void set unit(int _value) { |
- assert(_value == null || _value >= 0); |
- _unit = _value; |
+ void set unit(int value) { |
+ assert(value == null || value >= 0); |
+ this._unit = value; |
} |
@override |
@@ -3139,8 +3139,8 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* Each item of this list is the `true` if the corresponding element usage |
* is qualified with some prefix. |
*/ |
- void set usedElementIsQualifiedFlags(List<bool> _value) { |
- _usedElementIsQualifiedFlags = _value; |
+ void set usedElementIsQualifiedFlags(List<bool> value) { |
+ this._usedElementIsQualifiedFlags = value; |
} |
@override |
@@ -3149,8 +3149,8 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
/** |
* Each item of this list is the kind of the element usage. |
*/ |
- void set usedElementKinds(List<idl.IndexRelationKind> _value) { |
- _usedElementKinds = _value; |
+ void set usedElementKinds(List<idl.IndexRelationKind> value) { |
+ this._usedElementKinds = value; |
} |
@override |
@@ -3159,9 +3159,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
/** |
* Each item of this list is the length of the element usage. |
*/ |
- void set usedElementLengths(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _usedElementLengths = _value; |
+ void set usedElementLengths(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._usedElementLengths = value; |
} |
@override |
@@ -3171,9 +3171,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* Each item of this list is the offset of the element usage relative to the |
* beginning of the file. |
*/ |
- void set usedElementOffsets(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _usedElementOffsets = _value; |
+ void set usedElementOffsets(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._usedElementOffsets = value; |
} |
@override |
@@ -3184,9 +3184,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* [PackageIndex.elementOffsets]. The list is sorted in ascending order, so |
* that the client can quickly find element references in this [UnitIndex]. |
*/ |
- void set usedElements(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _usedElements = _value; |
+ void set usedElements(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._usedElements = value; |
} |
@override |
@@ -3196,8 +3196,8 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* Each item of this list is the `true` if the corresponding name usage |
* is qualified with some prefix. |
*/ |
- void set usedNameIsQualifiedFlags(List<bool> _value) { |
- _usedNameIsQualifiedFlags = _value; |
+ void set usedNameIsQualifiedFlags(List<bool> value) { |
+ this._usedNameIsQualifiedFlags = value; |
} |
@override |
@@ -3206,8 +3206,8 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
/** |
* Each item of this list is the kind of the name usage. |
*/ |
- void set usedNameKinds(List<idl.IndexRelationKind> _value) { |
- _usedNameKinds = _value; |
+ void set usedNameKinds(List<idl.IndexRelationKind> value) { |
+ this._usedNameKinds = value; |
} |
@override |
@@ -3217,9 +3217,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* Each item of this list is the offset of the name usage relative to the |
* beginning of the file. |
*/ |
- void set usedNameOffsets(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _usedNameOffsets = _value; |
+ void set usedNameOffsets(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._usedNameOffsets = value; |
} |
@override |
@@ -3230,9 +3230,9 @@ class UnitIndexBuilder extends Object with _UnitIndexMixin implements idl.UnitIn |
* used name. The list is sorted in ascending order, so that the client can |
* quickly find name uses in this [UnitIndex]. |
*/ |
- void set usedNames(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _usedNames = _value; |
+ void set usedNames(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._usedNames = value; |
} |
UnitIndexBuilder({List<idl.IndexNameKind> definedNameKinds, List<int> definedNameOffsets, List<int> definedNames, int unit, List<bool> usedElementIsQualifiedFlags, List<idl.IndexRelationKind> usedElementKinds, List<int> usedElementLengths, List<int> usedElementOffsets, List<int> usedElements, List<bool> usedNameIsQualifiedFlags, List<idl.IndexRelationKind> usedNameKinds, List<int> usedNameOffsets, List<int> usedNames}) |
@@ -3621,8 +3621,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Annotations for this class. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -3631,8 +3631,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Code range of the class. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -3642,8 +3642,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
* Documentation comment for the class, or `null` if there is no |
* documentation comment. |
*/ |
- void set documentationComment(UnlinkedDocumentationCommentBuilder _value) { |
- _documentationComment = _value; |
+ void set documentationComment(UnlinkedDocumentationCommentBuilder value) { |
+ this._documentationComment = value; |
} |
@override |
@@ -3652,8 +3652,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Executable objects (methods, getters, and setters) contained in the class. |
*/ |
- void set executables(List<UnlinkedExecutableBuilder> _value) { |
- _executables = _value; |
+ void set executables(List<UnlinkedExecutableBuilder> value) { |
+ this._executables = value; |
} |
@override |
@@ -3662,8 +3662,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Field declarations contained in the class. |
*/ |
- void set fields(List<UnlinkedVariableBuilder> _value) { |
- _fields = _value; |
+ void set fields(List<UnlinkedVariableBuilder> value) { |
+ this._fields = value; |
} |
@override |
@@ -3673,8 +3673,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
* Indicates whether this class is the core "Object" class (and hence has no |
* supertype) |
*/ |
- void set hasNoSupertype(bool _value) { |
- _hasNoSupertype = _value; |
+ void set hasNoSupertype(bool value) { |
+ this._hasNoSupertype = value; |
} |
@override |
@@ -3683,8 +3683,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Interfaces appearing in an `implements` clause, if any. |
*/ |
- void set interfaces(List<EntityRefBuilder> _value) { |
- _interfaces = _value; |
+ void set interfaces(List<EntityRefBuilder> value) { |
+ this._interfaces = value; |
} |
@override |
@@ -3693,8 +3693,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Indicates whether the class is declared with the `abstract` keyword. |
*/ |
- void set isAbstract(bool _value) { |
- _isAbstract = _value; |
+ void set isAbstract(bool value) { |
+ this._isAbstract = value; |
} |
@override |
@@ -3703,8 +3703,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Indicates whether the class is declared using mixin application syntax. |
*/ |
- void set isMixinApplication(bool _value) { |
- _isMixinApplication = _value; |
+ void set isMixinApplication(bool value) { |
+ this._isMixinApplication = value; |
} |
@override |
@@ -3713,8 +3713,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Mixins appearing in a `with` clause, if any. |
*/ |
- void set mixins(List<EntityRefBuilder> _value) { |
- _mixins = _value; |
+ void set mixins(List<EntityRefBuilder> value) { |
+ this._mixins = value; |
} |
@override |
@@ -3723,8 +3723,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Name of the class. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -3733,9 +3733,9 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Offset of the class name relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
@override |
@@ -3746,8 +3746,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
* explicitly declare a supertype (and hence has supertype `Object`), or (b) |
* the class *is* `Object` (and hence has no supertype). |
*/ |
- void set supertype(EntityRefBuilder _value) { |
- _supertype = _value; |
+ void set supertype(EntityRefBuilder value) { |
+ this._supertype = value; |
} |
@override |
@@ -3756,8 +3756,8 @@ class UnlinkedClassBuilder extends Object with _UnlinkedClassMixin implements id |
/** |
* Type parameters of the class, if any. |
*/ |
- void set typeParameters(List<UnlinkedTypeParamBuilder> _value) { |
- _typeParameters = _value; |
+ void set typeParameters(List<UnlinkedTypeParamBuilder> value) { |
+ this._typeParameters = value; |
} |
UnlinkedClassBuilder({List<UnlinkedConstBuilder> annotations, CodeRangeBuilder codeRange, UnlinkedDocumentationCommentBuilder documentationComment, List<UnlinkedExecutableBuilder> executables, List<UnlinkedVariableBuilder> fields, bool hasNoSupertype, List<EntityRefBuilder> interfaces, bool isAbstract, bool isMixinApplication, List<EntityRefBuilder> mixins, String name, int nameOffset, EntityRefBuilder supertype, List<UnlinkedTypeParamBuilder> typeParameters}) |
@@ -4109,9 +4109,9 @@ class UnlinkedCombinatorBuilder extends Object with _UnlinkedCombinatorMixin imp |
* If this is a `show` combinator, offset of the end of the list of shown |
* names. Otherwise zero. |
*/ |
- void set end(int _value) { |
- assert(_value == null || _value >= 0); |
- _end = _value; |
+ void set end(int value) { |
+ assert(value == null || value >= 0); |
+ this._end = value; |
} |
@override |
@@ -4120,8 +4120,8 @@ class UnlinkedCombinatorBuilder extends Object with _UnlinkedCombinatorMixin imp |
/** |
* List of names which are hidden. Empty if this is a `show` combinator. |
*/ |
- void set hides(List<String> _value) { |
- _hides = _value; |
+ void set hides(List<String> value) { |
+ this._hides = value; |
} |
@override |
@@ -4131,9 +4131,9 @@ class UnlinkedCombinatorBuilder extends Object with _UnlinkedCombinatorMixin imp |
* If this is a `show` combinator, offset of the `show` keyword. Otherwise |
* zero. |
*/ |
- void set offset(int _value) { |
- assert(_value == null || _value >= 0); |
- _offset = _value; |
+ void set offset(int value) { |
+ assert(value == null || value >= 0); |
+ this._offset = value; |
} |
@override |
@@ -4142,8 +4142,8 @@ class UnlinkedCombinatorBuilder extends Object with _UnlinkedCombinatorMixin imp |
/** |
* List of names which are shown. Empty if this is a `hide` combinator. |
*/ |
- void set shows(List<String> _value) { |
- _shows = _value; |
+ void set shows(List<String> value) { |
+ this._shows = value; |
} |
UnlinkedCombinatorBuilder({int end, List<String> hides, int offset, List<String> shows}) |
@@ -4289,8 +4289,8 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements id |
/** |
* Sequence of operators used by assignment operations. |
*/ |
- void set assignmentOperators(List<idl.UnlinkedExprAssignOperator> _value) { |
- _assignmentOperators = _value; |
+ void set assignmentOperators(List<idl.UnlinkedExprAssignOperator> value) { |
+ this._assignmentOperators = value; |
} |
@override |
@@ -4299,8 +4299,8 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements id |
/** |
* Sequence of 64-bit doubles consumed by the operation `pushDouble`. |
*/ |
- void set doubles(List<double> _value) { |
- _doubles = _value; |
+ void set doubles(List<double> value) { |
+ this._doubles = value; |
} |
@override |
@@ -4311,9 +4311,9 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements id |
* `pushArgument`, `pushInt`, `shiftOr`, `concatenate`, `invokeConstructor`, |
* `makeList`, and `makeMap`. |
*/ |
- void set ints(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _ints = _value; |
+ void set ints(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._ints = value; |
} |
@override |
@@ -4323,8 +4323,8 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements id |
* Indicates whether the expression is a valid potentially constant |
* expression. |
*/ |
- void set isValidConst(bool _value) { |
- _isValidConst = _value; |
+ void set isValidConst(bool value) { |
+ this._isValidConst = value; |
} |
@override |
@@ -4334,8 +4334,8 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements id |
* Sequence of operations to execute (starting with an empty stack) to form |
* the constant value. |
*/ |
- void set operations(List<idl.UnlinkedConstOperation> _value) { |
- _operations = _value; |
+ void set operations(List<idl.UnlinkedConstOperation> value) { |
+ this._operations = value; |
} |
@override |
@@ -4347,8 +4347,8 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements id |
* that in the case of `pushReference` (and sometimes `invokeConstructor` the |
* actual entity being referred to may be something other than a type. |
*/ |
- void set references(List<EntityRefBuilder> _value) { |
- _references = _value; |
+ void set references(List<EntityRefBuilder> value) { |
+ this._references = value; |
} |
@override |
@@ -4358,8 +4358,8 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements id |
* Sequence of strings consumed by the operations `pushString` and |
* `invokeConstructor`. |
*/ |
- void set strings(List<String> _value) { |
- _strings = _value; |
+ void set strings(List<String> value) { |
+ this._strings = value; |
} |
UnlinkedConstBuilder({List<idl.UnlinkedExprAssignOperator> assignmentOperators, List<double> doubles, List<int> ints, bool isValidConst, List<idl.UnlinkedConstOperation> operations, List<EntityRefBuilder> references, List<String> strings}) |
@@ -4592,8 +4592,8 @@ class UnlinkedConstructorInitializerBuilder extends Object with _UnlinkedConstru |
* from [arguments] with index `i` such that `n + i - m >= 0`, should be used |
* with the name at `n + i - m`. |
*/ |
- void set argumentNames(List<String> _value) { |
- _argumentNames = _value; |
+ void set argumentNames(List<String> value) { |
+ this._argumentNames = value; |
} |
@override |
@@ -4603,8 +4603,8 @@ class UnlinkedConstructorInitializerBuilder extends Object with _UnlinkedConstru |
* If [kind] is `thisInvocation` or `superInvocation`, the arguments of the |
* invocation. Otherwise empty. |
*/ |
- void set arguments(List<UnlinkedConstBuilder> _value) { |
- _arguments = _value; |
+ void set arguments(List<UnlinkedConstBuilder> value) { |
+ this._arguments = value; |
} |
@override |
@@ -4614,8 +4614,8 @@ class UnlinkedConstructorInitializerBuilder extends Object with _UnlinkedConstru |
* If [kind] is `field`, the expression of the field initializer. |
* Otherwise `null`. |
*/ |
- void set expression(UnlinkedConstBuilder _value) { |
- _expression = _value; |
+ void set expression(UnlinkedConstBuilder value) { |
+ this._expression = value; |
} |
@override |
@@ -4624,8 +4624,8 @@ class UnlinkedConstructorInitializerBuilder extends Object with _UnlinkedConstru |
/** |
* The kind of the constructor initializer (field, redirect, super). |
*/ |
- void set kind(idl.UnlinkedConstructorInitializerKind _value) { |
- _kind = _value; |
+ void set kind(idl.UnlinkedConstructorInitializerKind value) { |
+ this._kind = value; |
} |
@override |
@@ -4637,8 +4637,8 @@ class UnlinkedConstructorInitializerBuilder extends Object with _UnlinkedConstru |
* class, to redirect to. If [kind] is `superInvocation`, the name of the |
* constructor, declared in the superclass, to invoke. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
UnlinkedConstructorInitializerBuilder({List<String> argumentNames, List<UnlinkedConstBuilder> arguments, UnlinkedConstBuilder expression, idl.UnlinkedConstructorInitializerKind kind, String name}) |
@@ -4812,8 +4812,8 @@ class UnlinkedDocumentationCommentBuilder extends Object with _UnlinkedDocumenta |
* References appearing within the doc comment in square brackets are not |
* specially encoded. |
*/ |
- void set text(String _value) { |
- _text = _value; |
+ void set text(String value) { |
+ this._text = value; |
} |
UnlinkedDocumentationCommentBuilder({String text}) |
@@ -4904,8 +4904,8 @@ class UnlinkedEnumBuilder extends Object with _UnlinkedEnumMixin implements idl. |
/** |
* Annotations for this enum. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -4914,8 +4914,8 @@ class UnlinkedEnumBuilder extends Object with _UnlinkedEnumMixin implements idl. |
/** |
* Code range of the enum. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -4925,8 +4925,8 @@ class UnlinkedEnumBuilder extends Object with _UnlinkedEnumMixin implements idl. |
* Documentation comment for the enum, or `null` if there is no documentation |
* comment. |
*/ |
- void set documentationComment(UnlinkedDocumentationCommentBuilder _value) { |
- _documentationComment = _value; |
+ void set documentationComment(UnlinkedDocumentationCommentBuilder value) { |
+ this._documentationComment = value; |
} |
@override |
@@ -4935,8 +4935,8 @@ class UnlinkedEnumBuilder extends Object with _UnlinkedEnumMixin implements idl. |
/** |
* Name of the enum type. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -4945,9 +4945,9 @@ class UnlinkedEnumBuilder extends Object with _UnlinkedEnumMixin implements idl. |
/** |
* Offset of the enum name relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
@override |
@@ -4956,8 +4956,8 @@ class UnlinkedEnumBuilder extends Object with _UnlinkedEnumMixin implements idl. |
/** |
* Values listed in the enum declaration, in declaration order. |
*/ |
- void set values(List<UnlinkedEnumValueBuilder> _value) { |
- _values = _value; |
+ void set values(List<UnlinkedEnumValueBuilder> value) { |
+ this._values = value; |
} |
UnlinkedEnumBuilder({List<UnlinkedConstBuilder> annotations, CodeRangeBuilder codeRange, UnlinkedDocumentationCommentBuilder documentationComment, String name, int nameOffset, List<UnlinkedEnumValueBuilder> values}) |
@@ -5142,8 +5142,8 @@ class UnlinkedEnumValueBuilder extends Object with _UnlinkedEnumValueMixin imple |
* Documentation comment for the enum value, or `null` if there is no |
* documentation comment. |
*/ |
- void set documentationComment(UnlinkedDocumentationCommentBuilder _value) { |
- _documentationComment = _value; |
+ void set documentationComment(UnlinkedDocumentationCommentBuilder value) { |
+ this._documentationComment = value; |
} |
@override |
@@ -5152,8 +5152,8 @@ class UnlinkedEnumValueBuilder extends Object with _UnlinkedEnumValueMixin imple |
/** |
* Name of the enumerated value. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -5162,9 +5162,9 @@ class UnlinkedEnumValueBuilder extends Object with _UnlinkedEnumValueMixin imple |
/** |
* Offset of the enum value name relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
UnlinkedEnumValueBuilder({UnlinkedDocumentationCommentBuilder documentationComment, String name, int nameOffset}) |
@@ -5305,8 +5305,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Annotations for this executable. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -5317,8 +5317,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* to the right of the `=>`. May be omitted if neither type inference nor |
* constant evaluation depends on the function body. |
*/ |
- void set bodyExpr(UnlinkedConstBuilder _value) { |
- _bodyExpr = _value; |
+ void set bodyExpr(UnlinkedConstBuilder value) { |
+ this._bodyExpr = value; |
} |
@override |
@@ -5327,8 +5327,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Code range of the executable. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -5338,8 +5338,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* If a constant [UnlinkedExecutableKind.constructor], the constructor |
* initializers. Otherwise empty. |
*/ |
- void set constantInitializers(List<UnlinkedConstructorInitializerBuilder> _value) { |
- _constantInitializers = _value; |
+ void set constantInitializers(List<UnlinkedConstructorInitializerBuilder> value) { |
+ this._constantInitializers = value; |
} |
@override |
@@ -5353,9 +5353,9 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* |
* Otherwise, zero. |
*/ |
- void set constCycleSlot(int _value) { |
- assert(_value == null || _value >= 0); |
- _constCycleSlot = _value; |
+ void set constCycleSlot(int value) { |
+ assert(value == null || value >= 0); |
+ this._constCycleSlot = value; |
} |
@override |
@@ -5365,8 +5365,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* Documentation comment for the executable, or `null` if there is no |
* documentation comment. |
*/ |
- void set documentationComment(UnlinkedDocumentationCommentBuilder _value) { |
- _documentationComment = _value; |
+ void set documentationComment(UnlinkedDocumentationCommentBuilder value) { |
+ this._documentationComment = value; |
} |
@override |
@@ -5379,9 +5379,9 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* no return type was inferred for this variable, so its static type is |
* `dynamic`. |
*/ |
- void set inferredReturnTypeSlot(int _value) { |
- assert(_value == null || _value >= 0); |
- _inferredReturnTypeSlot = _value; |
+ void set inferredReturnTypeSlot(int value) { |
+ assert(value == null || value >= 0); |
+ this._inferredReturnTypeSlot = value; |
} |
@override |
@@ -5390,8 +5390,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Indicates whether the executable is declared using the `abstract` keyword. |
*/ |
- void set isAbstract(bool _value) { |
- _isAbstract = _value; |
+ void set isAbstract(bool value) { |
+ this._isAbstract = value; |
} |
@override |
@@ -5400,8 +5400,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Indicates whether the executable has body marked as being asynchronous. |
*/ |
- void set isAsynchronous(bool _value) { |
- _isAsynchronous = _value; |
+ void set isAsynchronous(bool value) { |
+ this._isAsynchronous = value; |
} |
@override |
@@ -5410,8 +5410,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Indicates whether the executable is declared using the `const` keyword. |
*/ |
- void set isConst(bool _value) { |
- _isConst = _value; |
+ void set isConst(bool value) { |
+ this._isConst = value; |
} |
@override |
@@ -5420,8 +5420,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Indicates whether the executable is declared using the `external` keyword. |
*/ |
- void set isExternal(bool _value) { |
- _isExternal = _value; |
+ void set isExternal(bool value) { |
+ this._isExternal = value; |
} |
@override |
@@ -5430,8 +5430,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Indicates whether the executable is declared using the `factory` keyword. |
*/ |
- void set isFactory(bool _value) { |
- _isFactory = _value; |
+ void set isFactory(bool value) { |
+ this._isFactory = value; |
} |
@override |
@@ -5440,8 +5440,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Indicates whether the executable has body marked as being a generator. |
*/ |
- void set isGenerator(bool _value) { |
- _isGenerator = _value; |
+ void set isGenerator(bool value) { |
+ this._isGenerator = value; |
} |
@override |
@@ -5450,8 +5450,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* Indicates whether the executable is a redirected constructor. |
*/ |
- void set isRedirectedConstructor(bool _value) { |
- _isRedirectedConstructor = _value; |
+ void set isRedirectedConstructor(bool value) { |
+ this._isRedirectedConstructor = value; |
} |
@override |
@@ -5464,8 +5464,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* not declared using the `static` keyword (even though they are considered |
* static for semantic purposes). |
*/ |
- void set isStatic(bool _value) { |
- _isStatic = _value; |
+ void set isStatic(bool value) { |
+ this._isStatic = value; |
} |
@override |
@@ -5475,8 +5475,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* The kind of the executable (function/method, getter, setter, or |
* constructor). |
*/ |
- void set kind(idl.UnlinkedExecutableKind _value) { |
- _kind = _value; |
+ void set kind(idl.UnlinkedExecutableKind value) { |
+ this._kind = value; |
} |
@override |
@@ -5485,8 +5485,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* The list of local functions. |
*/ |
- void set localFunctions(List<UnlinkedExecutableBuilder> _value) { |
- _localFunctions = _value; |
+ void set localFunctions(List<UnlinkedExecutableBuilder> value) { |
+ this._localFunctions = value; |
} |
@override |
@@ -5495,8 +5495,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* The list of local labels. |
*/ |
- void set localLabels(List<UnlinkedLabelBuilder> _value) { |
- _localLabels = _value; |
+ void set localLabels(List<UnlinkedLabelBuilder> value) { |
+ this._localLabels = value; |
} |
@override |
@@ -5505,8 +5505,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* The list of local variables. |
*/ |
- void set localVariables(List<UnlinkedVariableBuilder> _value) { |
- _localVariables = _value; |
+ void set localVariables(List<UnlinkedVariableBuilder> value) { |
+ this._localVariables = value; |
} |
@override |
@@ -5517,8 +5517,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* named constructors, this excludes the class name and excludes the ".". |
* For unnamed constructors, this is the empty string. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -5528,9 +5528,9 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* If [kind] is [UnlinkedExecutableKind.constructor] and [name] is not empty, |
* the offset of the end of the constructor name. Otherwise zero. |
*/ |
- void set nameEnd(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameEnd = _value; |
+ void set nameEnd(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameEnd = value; |
} |
@override |
@@ -5542,9 +5542,9 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* For unnamed constructors, this is the offset of the class name (i.e. the |
* offset of the second "C" in "class C { C(); }"). |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
@override |
@@ -5555,8 +5555,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* parameters (hence this will be the empty list), and setters have a single |
* parameter. |
*/ |
- void set parameters(List<UnlinkedParamBuilder> _value) { |
- _parameters = _value; |
+ void set parameters(List<UnlinkedParamBuilder> value) { |
+ this._parameters = value; |
} |
@override |
@@ -5566,9 +5566,9 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* If [kind] is [UnlinkedExecutableKind.constructor] and [name] is not empty, |
* the offset of the period before the constructor name. Otherwise zero. |
*/ |
- void set periodOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _periodOffset = _value; |
+ void set periodOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._periodOffset = value; |
} |
@override |
@@ -5578,8 +5578,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* If [isRedirectedConstructor] and [isFactory] are both `true`, the |
* constructor to which this constructor redirects; otherwise empty. |
*/ |
- void set redirectedConstructor(EntityRefBuilder _value) { |
- _redirectedConstructor = _value; |
+ void set redirectedConstructor(EntityRefBuilder value) { |
+ this._redirectedConstructor = value; |
} |
@override |
@@ -5590,8 +5590,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* name of the constructor that this constructor redirects to; otherwise |
* empty. |
*/ |
- void set redirectedConstructorName(String _value) { |
- _redirectedConstructorName = _value; |
+ void set redirectedConstructorName(String value) { |
+ this._redirectedConstructorName = value; |
} |
@override |
@@ -5604,8 +5604,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* executables may have return types that are not accessible via direct |
* imports. |
*/ |
- void set returnType(EntityRefBuilder _value) { |
- _returnType = _value; |
+ void set returnType(EntityRefBuilder value) { |
+ this._returnType = value; |
} |
@override |
@@ -5615,8 +5615,8 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
* Type parameters of the executable, if any. Empty if support for generic |
* method syntax is disabled. |
*/ |
- void set typeParameters(List<UnlinkedTypeParamBuilder> _value) { |
- _typeParameters = _value; |
+ void set typeParameters(List<UnlinkedTypeParamBuilder> value) { |
+ this._typeParameters = value; |
} |
@override |
@@ -5625,9 +5625,9 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* If a local function, the length of the visible range; zero otherwise. |
*/ |
- void set visibleLength(int _value) { |
- assert(_value == null || _value >= 0); |
- _visibleLength = _value; |
+ void set visibleLength(int value) { |
+ assert(value == null || value >= 0); |
+ this._visibleLength = value; |
} |
@override |
@@ -5636,9 +5636,9 @@ class UnlinkedExecutableBuilder extends Object with _UnlinkedExecutableMixin imp |
/** |
* If a local function, the beginning of the visible range; zero otherwise. |
*/ |
- void set visibleOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _visibleOffset = _value; |
+ void set visibleOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._visibleOffset = value; |
} |
UnlinkedExecutableBuilder({List<UnlinkedConstBuilder> annotations, UnlinkedConstBuilder bodyExpr, CodeRangeBuilder codeRange, List<UnlinkedConstructorInitializerBuilder> constantInitializers, int constCycleSlot, UnlinkedDocumentationCommentBuilder documentationComment, int inferredReturnTypeSlot, bool isAbstract, bool isAsynchronous, bool isConst, bool isExternal, bool isFactory, bool isGenerator, bool isRedirectedConstructor, bool isStatic, idl.UnlinkedExecutableKind kind, List<UnlinkedExecutableBuilder> localFunctions, List<UnlinkedLabelBuilder> localLabels, List<UnlinkedVariableBuilder> localVariables, String name, int nameEnd, int nameOffset, List<UnlinkedParamBuilder> parameters, int periodOffset, EntityRefBuilder redirectedConstructor, String redirectedConstructorName, EntityRefBuilder returnType, List<UnlinkedTypeParamBuilder> typeParameters, int visibleLength, int visibleOffset}) |
@@ -6225,8 +6225,8 @@ class UnlinkedExportNonPublicBuilder extends Object with _UnlinkedExportNonPubli |
/** |
* Annotations for this export directive. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -6235,9 +6235,9 @@ class UnlinkedExportNonPublicBuilder extends Object with _UnlinkedExportNonPubli |
/** |
* Offset of the "export" keyword. |
*/ |
- void set offset(int _value) { |
- assert(_value == null || _value >= 0); |
- _offset = _value; |
+ void set offset(int value) { |
+ assert(value == null || value >= 0); |
+ this._offset = value; |
} |
@override |
@@ -6247,9 +6247,9 @@ class UnlinkedExportNonPublicBuilder extends Object with _UnlinkedExportNonPubli |
* End of the URI string (including quotes) relative to the beginning of the |
* file. |
*/ |
- void set uriEnd(int _value) { |
- assert(_value == null || _value >= 0); |
- _uriEnd = _value; |
+ void set uriEnd(int value) { |
+ assert(value == null || value >= 0); |
+ this._uriEnd = value; |
} |
@override |
@@ -6259,9 +6259,9 @@ class UnlinkedExportNonPublicBuilder extends Object with _UnlinkedExportNonPubli |
* Offset of the URI string (including quotes) relative to the beginning of |
* the file. |
*/ |
- void set uriOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _uriOffset = _value; |
+ void set uriOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._uriOffset = value; |
} |
UnlinkedExportNonPublicBuilder({List<UnlinkedConstBuilder> annotations, int offset, int uriEnd, int uriOffset}) |
@@ -6392,8 +6392,8 @@ class UnlinkedExportPublicBuilder extends Object with _UnlinkedExportPublicMixin |
/** |
* Combinators contained in this import declaration. |
*/ |
- void set combinators(List<UnlinkedCombinatorBuilder> _value) { |
- _combinators = _value; |
+ void set combinators(List<UnlinkedCombinatorBuilder> value) { |
+ this._combinators = value; |
} |
@override |
@@ -6402,8 +6402,8 @@ class UnlinkedExportPublicBuilder extends Object with _UnlinkedExportPublicMixin |
/** |
* URI used in the source code to reference the exported library. |
*/ |
- void set uri(String _value) { |
- _uri = _value; |
+ void set uri(String value) { |
+ this._uri = value; |
} |
UnlinkedExportPublicBuilder({List<UnlinkedCombinatorBuilder> combinators, String uri}) |
@@ -6518,8 +6518,8 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
/** |
* Annotations for this import declaration. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -6528,8 +6528,8 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
/** |
* Combinators contained in this import declaration. |
*/ |
- void set combinators(List<UnlinkedCombinatorBuilder> _value) { |
- _combinators = _value; |
+ void set combinators(List<UnlinkedCombinatorBuilder> value) { |
+ this._combinators = value; |
} |
@override |
@@ -6538,8 +6538,8 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
/** |
* Indicates whether the import declaration uses the `deferred` keyword. |
*/ |
- void set isDeferred(bool _value) { |
- _isDeferred = _value; |
+ void set isDeferred(bool value) { |
+ this._isDeferred = value; |
} |
@override |
@@ -6548,8 +6548,8 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
/** |
* Indicates whether the import declaration is implicit. |
*/ |
- void set isImplicit(bool _value) { |
- _isImplicit = _value; |
+ void set isImplicit(bool value) { |
+ this._isImplicit = value; |
} |
@override |
@@ -6559,9 +6559,9 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
* If [isImplicit] is false, offset of the "import" keyword. If [isImplicit] |
* is true, zero. |
*/ |
- void set offset(int _value) { |
- assert(_value == null || _value >= 0); |
- _offset = _value; |
+ void set offset(int value) { |
+ assert(value == null || value >= 0); |
+ this._offset = value; |
} |
@override |
@@ -6571,9 +6571,9 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
* Offset of the prefix name relative to the beginning of the file, or zero |
* if there is no prefix. |
*/ |
- void set prefixOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _prefixOffset = _value; |
+ void set prefixOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._prefixOffset = value; |
} |
@override |
@@ -6585,9 +6585,9 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
* |
* Note that multiple imports can declare the same prefix. |
*/ |
- void set prefixReference(int _value) { |
- assert(_value == null || _value >= 0); |
- _prefixReference = _value; |
+ void set prefixReference(int value) { |
+ assert(value == null || value >= 0); |
+ this._prefixReference = value; |
} |
@override |
@@ -6596,8 +6596,8 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
/** |
* URI used in the source code to reference the imported library. |
*/ |
- void set uri(String _value) { |
- _uri = _value; |
+ void set uri(String value) { |
+ this._uri = value; |
} |
@override |
@@ -6607,9 +6607,9 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
* End of the URI string (including quotes) relative to the beginning of the |
* file. If [isImplicit] is true, zero. |
*/ |
- void set uriEnd(int _value) { |
- assert(_value == null || _value >= 0); |
- _uriEnd = _value; |
+ void set uriEnd(int value) { |
+ assert(value == null || value >= 0); |
+ this._uriEnd = value; |
} |
@override |
@@ -6619,9 +6619,9 @@ class UnlinkedImportBuilder extends Object with _UnlinkedImportMixin implements |
* Offset of the URI string (including quotes) relative to the beginning of |
* the file. If [isImplicit] is true, zero. |
*/ |
- void set uriOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _uriOffset = _value; |
+ void set uriOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._uriOffset = value; |
} |
UnlinkedImportBuilder({List<UnlinkedConstBuilder> annotations, List<UnlinkedCombinatorBuilder> combinators, bool isDeferred, bool isImplicit, int offset, int prefixOffset, int prefixReference, String uri, int uriEnd, int uriOffset}) |
@@ -6855,8 +6855,8 @@ class UnlinkedLabelBuilder extends Object with _UnlinkedLabelMixin implements id |
* Return `true` if this label is associated with a `switch` member (`case` or |
* `default`). |
*/ |
- void set isOnSwitchMember(bool _value) { |
- _isOnSwitchMember = _value; |
+ void set isOnSwitchMember(bool value) { |
+ this._isOnSwitchMember = value; |
} |
@override |
@@ -6865,8 +6865,8 @@ class UnlinkedLabelBuilder extends Object with _UnlinkedLabelMixin implements id |
/** |
* Return `true` if this label is associated with a `switch` statement. |
*/ |
- void set isOnSwitchStatement(bool _value) { |
- _isOnSwitchStatement = _value; |
+ void set isOnSwitchStatement(bool value) { |
+ this._isOnSwitchStatement = value; |
} |
@override |
@@ -6875,8 +6875,8 @@ class UnlinkedLabelBuilder extends Object with _UnlinkedLabelMixin implements id |
/** |
* Name of the label. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -6885,9 +6885,9 @@ class UnlinkedLabelBuilder extends Object with _UnlinkedLabelMixin implements id |
/** |
* Offset of the label relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
UnlinkedLabelBuilder({bool isOnSwitchMember, bool isOnSwitchStatement, String name, int nameOffset}) |
@@ -7022,8 +7022,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* Annotations for this parameter. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -7032,8 +7032,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* Code range of the parameter. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -7043,8 +7043,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
* If the parameter has a default value, the source text of the constant |
* expression in the default value. Otherwise the empty string. |
*/ |
- void set defaultValueCode(String _value) { |
- _defaultValueCode = _value; |
+ void set defaultValueCode(String value) { |
+ this._defaultValueCode = value; |
} |
@override |
@@ -7061,9 +7061,9 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
* not specified, they always inherit the static type of the corresponding |
* field. |
*/ |
- void set inferredTypeSlot(int _value) { |
- assert(_value == null || _value >= 0); |
- _inferredTypeSlot = _value; |
+ void set inferredTypeSlot(int value) { |
+ assert(value == null || value >= 0); |
+ this._inferredTypeSlot = value; |
} |
@override |
@@ -7073,8 +7073,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
* The synthetic initializer function of the parameter. Absent if the variable |
* does not have an initializer. |
*/ |
- void set initializer(UnlinkedExecutableBuilder _value) { |
- _initializer = _value; |
+ void set initializer(UnlinkedExecutableBuilder value) { |
+ this._initializer = value; |
} |
@override |
@@ -7083,8 +7083,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* Indicates whether this is a function-typed parameter. |
*/ |
- void set isFunctionTyped(bool _value) { |
- _isFunctionTyped = _value; |
+ void set isFunctionTyped(bool value) { |
+ this._isFunctionTyped = value; |
} |
@override |
@@ -7094,8 +7094,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
* Indicates whether this is an initializing formal parameter (i.e. it is |
* declared using `this.` syntax). |
*/ |
- void set isInitializingFormal(bool _value) { |
- _isInitializingFormal = _value; |
+ void set isInitializingFormal(bool value) { |
+ this._isInitializingFormal = value; |
} |
@override |
@@ -7104,8 +7104,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* Kind of the parameter. |
*/ |
- void set kind(idl.UnlinkedParamKind _value) { |
- _kind = _value; |
+ void set kind(idl.UnlinkedParamKind value) { |
+ this._kind = value; |
} |
@override |
@@ -7114,8 +7114,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* Name of the parameter. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -7124,9 +7124,9 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* Offset of the parameter name relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
@override |
@@ -7135,8 +7135,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* If [isFunctionTyped] is `true`, the parameters of the function type. |
*/ |
- void set parameters(List<UnlinkedParamBuilder> _value) { |
- _parameters = _value; |
+ void set parameters(List<UnlinkedParamBuilder> value) { |
+ this._parameters = value; |
} |
@override |
@@ -7147,8 +7147,8 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
* [isFunctionTyped] is `false`, the declared type. Absent if the type is |
* implicit. |
*/ |
- void set type(EntityRefBuilder _value) { |
- _type = _value; |
+ void set type(EntityRefBuilder value) { |
+ this._type = value; |
} |
@override |
@@ -7157,9 +7157,9 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* The length of the visible range. |
*/ |
- void set visibleLength(int _value) { |
- assert(_value == null || _value >= 0); |
- _visibleLength = _value; |
+ void set visibleLength(int value) { |
+ assert(value == null || value >= 0); |
+ this._visibleLength = value; |
} |
@override |
@@ -7168,9 +7168,9 @@ class UnlinkedParamBuilder extends Object with _UnlinkedParamMixin implements id |
/** |
* The beginning of the visible range. |
*/ |
- void set visibleOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _visibleOffset = _value; |
+ void set visibleOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._visibleOffset = value; |
} |
UnlinkedParamBuilder({List<UnlinkedConstBuilder> annotations, CodeRangeBuilder codeRange, String defaultValueCode, int inferredTypeSlot, UnlinkedExecutableBuilder initializer, bool isFunctionTyped, bool isInitializingFormal, idl.UnlinkedParamKind kind, String name, int nameOffset, List<UnlinkedParamBuilder> parameters, EntityRefBuilder type, int visibleLength, int visibleOffset}) |
@@ -7478,8 +7478,8 @@ class UnlinkedPartBuilder extends Object with _UnlinkedPartMixin implements idl. |
/** |
* Annotations for this part declaration. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -7489,9 +7489,9 @@ class UnlinkedPartBuilder extends Object with _UnlinkedPartMixin implements idl. |
* End of the URI string (including quotes) relative to the beginning of the |
* file. |
*/ |
- void set uriEnd(int _value) { |
- assert(_value == null || _value >= 0); |
- _uriEnd = _value; |
+ void set uriEnd(int value) { |
+ assert(value == null || value >= 0); |
+ this._uriEnd = value; |
} |
@override |
@@ -7501,9 +7501,9 @@ class UnlinkedPartBuilder extends Object with _UnlinkedPartMixin implements idl. |
* Offset of the URI string (including quotes) relative to the beginning of |
* the file. |
*/ |
- void set uriOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _uriOffset = _value; |
+ void set uriOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._uriOffset = value; |
} |
UnlinkedPartBuilder({List<UnlinkedConstBuilder> annotations, int uriEnd, int uriOffset}) |
@@ -7622,8 +7622,8 @@ class UnlinkedPublicNameBuilder extends Object with _UnlinkedPublicNameMixin imp |
/** |
* The kind of object referred to by the name. |
*/ |
- void set kind(idl.ReferenceKind _value) { |
- _kind = _value; |
+ void set kind(idl.ReferenceKind value) { |
+ this._kind = value; |
} |
@override |
@@ -7637,8 +7637,8 @@ class UnlinkedPublicNameBuilder extends Object with _UnlinkedPublicNameMixin imp |
* Unnamed constructors are not included since they do not constitute a |
* separate name added to any namespace. |
*/ |
- void set members(List<UnlinkedPublicNameBuilder> _value) { |
- _members = _value; |
+ void set members(List<UnlinkedPublicNameBuilder> value) { |
+ this._members = value; |
} |
@override |
@@ -7647,8 +7647,8 @@ class UnlinkedPublicNameBuilder extends Object with _UnlinkedPublicNameMixin imp |
/** |
* The name itself. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -7658,9 +7658,9 @@ class UnlinkedPublicNameBuilder extends Object with _UnlinkedPublicNameMixin imp |
* If the entity being referred to is generic, the number of type parameters |
* it accepts. Otherwise zero. |
*/ |
- void set numTypeParameters(int _value) { |
- assert(_value == null || _value >= 0); |
- _numTypeParameters = _value; |
+ void set numTypeParameters(int value) { |
+ assert(value == null || value >= 0); |
+ this._numTypeParameters = value; |
} |
UnlinkedPublicNameBuilder({idl.ReferenceKind kind, List<UnlinkedPublicNameBuilder> members, String name, int numTypeParameters}) |
@@ -7796,8 +7796,8 @@ class UnlinkedPublicNamespaceBuilder extends Object with _UnlinkedPublicNamespac |
/** |
* Export declarations in the compilation unit. |
*/ |
- void set exports(List<UnlinkedExportPublicBuilder> _value) { |
- _exports = _value; |
+ void set exports(List<UnlinkedExportPublicBuilder> value) { |
+ this._exports = value; |
} |
@override |
@@ -7809,8 +7809,8 @@ class UnlinkedPublicNamespaceBuilder extends Object with _UnlinkedPublicNamespac |
* TODO(paulberry): consider sorting these names to reduce unnecessary |
* relinking. |
*/ |
- void set names(List<UnlinkedPublicNameBuilder> _value) { |
- _names = _value; |
+ void set names(List<UnlinkedPublicNameBuilder> value) { |
+ this._names = value; |
} |
@override |
@@ -7819,8 +7819,8 @@ class UnlinkedPublicNamespaceBuilder extends Object with _UnlinkedPublicNamespac |
/** |
* URIs referenced by part declarations in the compilation unit. |
*/ |
- void set parts(List<String> _value) { |
- _parts = _value; |
+ void set parts(List<String> value) { |
+ this._parts = value; |
} |
UnlinkedPublicNamespaceBuilder({List<UnlinkedExportPublicBuilder> exports, List<UnlinkedPublicNameBuilder> names, List<String> parts}) |
@@ -7972,8 +7972,8 @@ class UnlinkedReferenceBuilder extends Object with _UnlinkedReferenceMixin imple |
* string is "dynamic". For the pseudo-type `void`, the string is "void". |
* For the pseudo-type `bottom`, the string is "*bottom*". |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -7987,9 +7987,9 @@ class UnlinkedReferenceBuilder extends Object with _UnlinkedReferenceMixin imple |
* UnlinkedUnit.references[i].prefixReference != 0, then |
* UnlinkedUnit.references[i].prefixReference < i. |
*/ |
- void set prefixReference(int _value) { |
- assert(_value == null || _value >= 0); |
- _prefixReference = _value; |
+ void set prefixReference(int value) { |
+ assert(value == null || value >= 0); |
+ this._prefixReference = value; |
} |
UnlinkedReferenceBuilder({String name, int prefixReference}) |
@@ -8090,8 +8090,8 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
/** |
* Annotations for this typedef. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -8100,8 +8100,8 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
/** |
* Code range of the typedef. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -8111,8 +8111,8 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
* Documentation comment for the typedef, or `null` if there is no |
* documentation comment. |
*/ |
- void set documentationComment(UnlinkedDocumentationCommentBuilder _value) { |
- _documentationComment = _value; |
+ void set documentationComment(UnlinkedDocumentationCommentBuilder value) { |
+ this._documentationComment = value; |
} |
@override |
@@ -8121,8 +8121,8 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
/** |
* Name of the typedef. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -8131,9 +8131,9 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
/** |
* Offset of the typedef name relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
@override |
@@ -8142,8 +8142,8 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
/** |
* Parameters of the executable, if any. |
*/ |
- void set parameters(List<UnlinkedParamBuilder> _value) { |
- _parameters = _value; |
+ void set parameters(List<UnlinkedParamBuilder> value) { |
+ this._parameters = value; |
} |
@override |
@@ -8152,8 +8152,8 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
/** |
* Return type of the typedef. |
*/ |
- void set returnType(EntityRefBuilder _value) { |
- _returnType = _value; |
+ void set returnType(EntityRefBuilder value) { |
+ this._returnType = value; |
} |
@override |
@@ -8162,8 +8162,8 @@ class UnlinkedTypedefBuilder extends Object with _UnlinkedTypedefMixin implement |
/** |
* Type parameters of the typedef, if any. |
*/ |
- void set typeParameters(List<UnlinkedTypeParamBuilder> _value) { |
- _typeParameters = _value; |
+ void set typeParameters(List<UnlinkedTypeParamBuilder> value) { |
+ this._typeParameters = value; |
} |
UnlinkedTypedefBuilder({List<UnlinkedConstBuilder> annotations, CodeRangeBuilder codeRange, UnlinkedDocumentationCommentBuilder documentationComment, String name, int nameOffset, List<UnlinkedParamBuilder> parameters, EntityRefBuilder returnType, List<UnlinkedTypeParamBuilder> typeParameters}) |
@@ -8395,8 +8395,8 @@ class UnlinkedTypeParamBuilder extends Object with _UnlinkedTypeParamMixin imple |
/** |
* Annotations for this type parameter. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -8406,8 +8406,8 @@ class UnlinkedTypeParamBuilder extends Object with _UnlinkedTypeParamMixin imple |
* Bound of the type parameter, if a bound is explicitly declared. Otherwise |
* null. |
*/ |
- void set bound(EntityRefBuilder _value) { |
- _bound = _value; |
+ void set bound(EntityRefBuilder value) { |
+ this._bound = value; |
} |
@override |
@@ -8416,8 +8416,8 @@ class UnlinkedTypeParamBuilder extends Object with _UnlinkedTypeParamMixin imple |
/** |
* Code range of the type parameter. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -8426,8 +8426,8 @@ class UnlinkedTypeParamBuilder extends Object with _UnlinkedTypeParamMixin imple |
/** |
* Name of the type parameter. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -8436,9 +8436,9 @@ class UnlinkedTypeParamBuilder extends Object with _UnlinkedTypeParamMixin imple |
/** |
* Offset of the type parameter name relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
UnlinkedTypeParamBuilder({List<UnlinkedConstBuilder> annotations, EntityRefBuilder bound, CodeRangeBuilder codeRange, String name, int nameOffset}) |
@@ -8613,8 +8613,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Classes declared in the compilation unit. |
*/ |
- void set classes(List<UnlinkedClassBuilder> _value) { |
- _classes = _value; |
+ void set classes(List<UnlinkedClassBuilder> value) { |
+ this._classes = value; |
} |
@override |
@@ -8623,8 +8623,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Code range of the unit. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -8633,8 +8633,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Enums declared in the compilation unit. |
*/ |
- void set enums(List<UnlinkedEnumBuilder> _value) { |
- _enums = _value; |
+ void set enums(List<UnlinkedEnumBuilder> value) { |
+ this._enums = value; |
} |
@override |
@@ -8644,8 +8644,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
* Top level executable objects (functions, getters, and setters) declared in |
* the compilation unit. |
*/ |
- void set executables(List<UnlinkedExecutableBuilder> _value) { |
- _executables = _value; |
+ void set executables(List<UnlinkedExecutableBuilder> value) { |
+ this._executables = value; |
} |
@override |
@@ -8654,8 +8654,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Export declarations in the compilation unit. |
*/ |
- void set exports(List<UnlinkedExportNonPublicBuilder> _value) { |
- _exports = _value; |
+ void set exports(List<UnlinkedExportNonPublicBuilder> value) { |
+ this._exports = value; |
} |
@override |
@@ -8668,8 +8668,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
* When this field is non-empty, all other fields in the data structure have |
* their default values. |
*/ |
- void set fallbackModePath(String _value) { |
- _fallbackModePath = _value; |
+ void set fallbackModePath(String value) { |
+ this._fallbackModePath = value; |
} |
@override |
@@ -8678,8 +8678,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Import declarations in the compilation unit. |
*/ |
- void set imports(List<UnlinkedImportBuilder> _value) { |
- _imports = _value; |
+ void set imports(List<UnlinkedImportBuilder> value) { |
+ this._imports = value; |
} |
@override |
@@ -8689,8 +8689,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
* Annotations for the library declaration, or the empty list if there is no |
* library declaration. |
*/ |
- void set libraryAnnotations(List<UnlinkedConstBuilder> _value) { |
- _libraryAnnotations = _value; |
+ void set libraryAnnotations(List<UnlinkedConstBuilder> value) { |
+ this._libraryAnnotations = value; |
} |
@override |
@@ -8700,8 +8700,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
* Documentation comment for the library, or `null` if there is no |
* documentation comment. |
*/ |
- void set libraryDocumentationComment(UnlinkedDocumentationCommentBuilder _value) { |
- _libraryDocumentationComment = _value; |
+ void set libraryDocumentationComment(UnlinkedDocumentationCommentBuilder value) { |
+ this._libraryDocumentationComment = value; |
} |
@override |
@@ -8710,8 +8710,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Name of the library (from a "library" declaration, if present). |
*/ |
- void set libraryName(String _value) { |
- _libraryName = _value; |
+ void set libraryName(String value) { |
+ this._libraryName = value; |
} |
@override |
@@ -8721,9 +8721,9 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
* Length of the library name as it appears in the source code (or 0 if the |
* library has no name). |
*/ |
- void set libraryNameLength(int _value) { |
- assert(_value == null || _value >= 0); |
- _libraryNameLength = _value; |
+ void set libraryNameLength(int value) { |
+ assert(value == null || value >= 0); |
+ this._libraryNameLength = value; |
} |
@override |
@@ -8733,9 +8733,9 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
* Offset of the library name relative to the beginning of the file (or 0 if |
* the library has no name). |
*/ |
- void set libraryNameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _libraryNameOffset = _value; |
+ void set libraryNameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._libraryNameOffset = value; |
} |
@override |
@@ -8744,9 +8744,9 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Offsets of the first character of each line in the source code. |
*/ |
- void set lineStarts(List<int> _value) { |
- assert(_value == null || _value.every((e) => e >= 0)); |
- _lineStarts = _value; |
+ void set lineStarts(List<int> value) { |
+ assert(value == null || value.every((e) => e >= 0)); |
+ this._lineStarts = value; |
} |
@override |
@@ -8755,8 +8755,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Part declarations in the compilation unit. |
*/ |
- void set parts(List<UnlinkedPartBuilder> _value) { |
- _parts = _value; |
+ void set parts(List<UnlinkedPartBuilder> value) { |
+ this._parts = value; |
} |
@override |
@@ -8765,8 +8765,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Unlinked public namespace of this compilation unit. |
*/ |
- void set publicNamespace(UnlinkedPublicNamespaceBuilder _value) { |
- _publicNamespace = _value; |
+ void set publicNamespace(UnlinkedPublicNamespaceBuilder value) { |
+ this._publicNamespace = value; |
} |
@override |
@@ -8779,8 +8779,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
* example [UnlinkedReference.prefixReference or |
* UnlinkedImport.prefixReference]). |
*/ |
- void set references(List<UnlinkedReferenceBuilder> _value) { |
- _references = _value; |
+ void set references(List<UnlinkedReferenceBuilder> value) { |
+ this._references = value; |
} |
@override |
@@ -8789,8 +8789,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Typedefs declared in the compilation unit. |
*/ |
- void set typedefs(List<UnlinkedTypedefBuilder> _value) { |
- _typedefs = _value; |
+ void set typedefs(List<UnlinkedTypedefBuilder> value) { |
+ this._typedefs = value; |
} |
@override |
@@ -8799,8 +8799,8 @@ class UnlinkedUnitBuilder extends Object with _UnlinkedUnitMixin implements idl. |
/** |
* Top level variables declared in the compilation unit. |
*/ |
- void set variables(List<UnlinkedVariableBuilder> _value) { |
- _variables = _value; |
+ void set variables(List<UnlinkedVariableBuilder> value) { |
+ this._variables = value; |
} |
UnlinkedUnitBuilder({List<UnlinkedClassBuilder> classes, CodeRangeBuilder codeRange, List<UnlinkedEnumBuilder> enums, List<UnlinkedExecutableBuilder> executables, List<UnlinkedExportNonPublicBuilder> exports, String fallbackModePath, List<UnlinkedImportBuilder> imports, List<UnlinkedConstBuilder> libraryAnnotations, UnlinkedDocumentationCommentBuilder libraryDocumentationComment, String libraryName, int libraryNameLength, int libraryNameOffset, List<int> lineStarts, List<UnlinkedPartBuilder> parts, UnlinkedPublicNamespaceBuilder publicNamespace, List<UnlinkedReferenceBuilder> references, List<UnlinkedTypedefBuilder> typedefs, List<UnlinkedVariableBuilder> variables}) |
@@ -9283,8 +9283,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* Annotations for this variable. |
*/ |
- void set annotations(List<UnlinkedConstBuilder> _value) { |
- _annotations = _value; |
+ void set annotations(List<UnlinkedConstBuilder> value) { |
+ this._annotations = value; |
} |
@override |
@@ -9293,8 +9293,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* Code range of the variable. |
*/ |
- void set codeRange(CodeRangeBuilder _value) { |
- _codeRange = _value; |
+ void set codeRange(CodeRangeBuilder value) { |
+ this._codeRange = value; |
} |
@override |
@@ -9304,8 +9304,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
* Documentation comment for the variable, or `null` if there is no |
* documentation comment. |
*/ |
- void set documentationComment(UnlinkedDocumentationCommentBuilder _value) { |
- _documentationComment = _value; |
+ void set documentationComment(UnlinkedDocumentationCommentBuilder value) { |
+ this._documentationComment = value; |
} |
@override |
@@ -9317,9 +9317,9 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
* there is no matching entry in [LinkedLibrary.types], then no type was |
* inferred for this variable, so its static type is `dynamic`. |
*/ |
- void set inferredTypeSlot(int _value) { |
- assert(_value == null || _value >= 0); |
- _inferredTypeSlot = _value; |
+ void set inferredTypeSlot(int value) { |
+ assert(value == null || value >= 0); |
+ this._inferredTypeSlot = value; |
} |
@override |
@@ -9329,8 +9329,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
* The synthetic initializer function of the variable. Absent if the variable |
* does not have an initializer. |
*/ |
- void set initializer(UnlinkedExecutableBuilder _value) { |
- _initializer = _value; |
+ void set initializer(UnlinkedExecutableBuilder value) { |
+ this._initializer = value; |
} |
@override |
@@ -9339,8 +9339,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* Indicates whether the variable is declared using the `const` keyword. |
*/ |
- void set isConst(bool _value) { |
- _isConst = _value; |
+ void set isConst(bool value) { |
+ this._isConst = value; |
} |
@override |
@@ -9349,8 +9349,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* Indicates whether the variable is declared using the `final` keyword. |
*/ |
- void set isFinal(bool _value) { |
- _isFinal = _value; |
+ void set isFinal(bool value) { |
+ this._isFinal = value; |
} |
@override |
@@ -9363,8 +9363,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
* declared using the `static` keyword (even though they are considered |
* static for semantic purposes). |
*/ |
- void set isStatic(bool _value) { |
- _isStatic = _value; |
+ void set isStatic(bool value) { |
+ this._isStatic = value; |
} |
@override |
@@ -9373,8 +9373,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* Name of the variable. |
*/ |
- void set name(String _value) { |
- _name = _value; |
+ void set name(String value) { |
+ this._name = value; |
} |
@override |
@@ -9383,9 +9383,9 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* Offset of the variable name relative to the beginning of the file. |
*/ |
- void set nameOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _nameOffset = _value; |
+ void set nameOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._nameOffset = value; |
} |
@override |
@@ -9399,9 +9399,9 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
* |
* Non-propagable variables have a [propagatedTypeSlot] of zero. |
*/ |
- void set propagatedTypeSlot(int _value) { |
- assert(_value == null || _value >= 0); |
- _propagatedTypeSlot = _value; |
+ void set propagatedTypeSlot(int value) { |
+ assert(value == null || value >= 0); |
+ this._propagatedTypeSlot = value; |
} |
@override |
@@ -9410,8 +9410,8 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* Declared type of the variable. Absent if the type is implicit. |
*/ |
- void set type(EntityRefBuilder _value) { |
- _type = _value; |
+ void set type(EntityRefBuilder value) { |
+ this._type = value; |
} |
@override |
@@ -9420,9 +9420,9 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* If a local variable, the length of the visible range; zero otherwise. |
*/ |
- void set visibleLength(int _value) { |
- assert(_value == null || _value >= 0); |
- _visibleLength = _value; |
+ void set visibleLength(int value) { |
+ assert(value == null || value >= 0); |
+ this._visibleLength = value; |
} |
@override |
@@ -9431,9 +9431,9 @@ class UnlinkedVariableBuilder extends Object with _UnlinkedVariableMixin impleme |
/** |
* If a local variable, the beginning of the visible range; zero otherwise. |
*/ |
- void set visibleOffset(int _value) { |
- assert(_value == null || _value >= 0); |
- _visibleOffset = _value; |
+ void set visibleOffset(int value) { |
+ assert(value == null || value >= 0); |
+ this._visibleOffset = value; |
} |
UnlinkedVariableBuilder({List<UnlinkedConstBuilder> annotations, CodeRangeBuilder codeRange, UnlinkedDocumentationCommentBuilder documentationComment, int inferredTypeSlot, UnlinkedExecutableBuilder initializer, bool isConst, bool isFinal, bool isStatic, String name, int nameOffset, int propagatedTypeSlot, EntityRefBuilder type, int visibleLength, int visibleOffset}) |