// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // // This file has been automatically generated. Please do not edit it manually. // To regenerate the file, use the script // "pkg/analysis_server/tool/spec/generate_files". // ignore_for_file: constant_identifier_names import 'dart:convert' hide JsonDecoder; import 'package:analyzer_plugin/protocol/protocol.dart'; import 'package:analyzer_plugin/src/protocol/protocol_internal.dart'; /// AddContentOverlay /// /// { /// "type": "add" /// "content": String /// } /// /// Clients may not extend, implement or mix-in this class. class AddContentOverlay implements HasToJson { /// The new content of the file. String content; AddContentOverlay(this.content); factory AddContentOverlay.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { if (json['type'] != 'add') { throw jsonDecoder.mismatch(jsonPath, 'equal add', json); } String content; if (json.containsKey('content')) { content = jsonDecoder.decodeString('$jsonPath.content', json['content']); } else { throw jsonDecoder.mismatch(jsonPath, 'content'); } return AddContentOverlay(content); } else { throw jsonDecoder.mismatch(jsonPath, 'AddContentOverlay', json); } } @override Map toJson() { var result = {}; result['type'] = 'add'; result['content'] = content; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is AddContentOverlay) { return content == other.content; } return false; } @override int get hashCode => Object.hash( 704418402, content, ); } /// AnalysisError /// /// { /// "severity": AnalysisErrorSeverity /// "type": AnalysisErrorType /// "location": Location /// "message": String /// "correction": optional String /// "code": String /// "url": optional String /// "contextMessages": optional List /// "hasFix": optional bool /// } /// /// Clients may not extend, implement or mix-in this class. class AnalysisError implements HasToJson { /// The severity of the error. AnalysisErrorSeverity severity; /// The type of the error. AnalysisErrorType type; /// The location associated with the error. Location location; /// The message to be displayed for this error. The message should indicate /// what is wrong with the code and why it is wrong. String message; /// The correction message to be displayed for this error. The correction /// message should indicate how the user can fix the error. The field is /// omitted if there is no correction message associated with the error code. String? correction; /// The name, as a string, of the error code associated with this error. String code; /// The URL of a page containing documentation associated with this error. String? url; /// Additional messages associated with this diagnostic that provide context /// to help the user understand the diagnostic. List? contextMessages; /// A hint to indicate to interested clients that this error has an /// associated fix (or fixes). The absence of this field implies there are /// not known to be fixes. Note that since the operation to calculate whether /// fixes apply needs to be performant it is possible that complicated tests /// will be skipped and a false negative returned. For this reason, this /// attribute should be treated as a "hint". Despite the possibility of false /// negatives, no false positives should be returned. If a client sees this /// flag set they can proceed with the confidence that there are in fact /// associated fixes. bool? hasFix; AnalysisError( this.severity, this.type, this.location, this.message, this.code, {this.correction, this.url, this.contextMessages, this.hasFix}); factory AnalysisError.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { AnalysisErrorSeverity severity; if (json.containsKey('severity')) { severity = AnalysisErrorSeverity.fromJson( jsonDecoder, '$jsonPath.severity', json['severity']); } else { throw jsonDecoder.mismatch(jsonPath, 'severity'); } AnalysisErrorType type; if (json.containsKey('type')) { type = AnalysisErrorType.fromJson( jsonDecoder, '$jsonPath.type', json['type']); } else { throw jsonDecoder.mismatch(jsonPath, 'type'); } Location location; if (json.containsKey('location')) { location = Location.fromJson( jsonDecoder, '$jsonPath.location', json['location']); } else { throw jsonDecoder.mismatch(jsonPath, 'location'); } String message; if (json.containsKey('message')) { message = jsonDecoder.decodeString('$jsonPath.message', json['message']); } else { throw jsonDecoder.mismatch(jsonPath, 'message'); } String? correction; if (json.containsKey('correction')) { correction = jsonDecoder.decodeString( '$jsonPath.correction', json['correction']); } String code; if (json.containsKey('code')) { code = jsonDecoder.decodeString('$jsonPath.code', json['code']); } else { throw jsonDecoder.mismatch(jsonPath, 'code'); } String? url; if (json.containsKey('url')) { url = jsonDecoder.decodeString('$jsonPath.url', json['url']); } List? contextMessages; if (json.containsKey('contextMessages')) { contextMessages = jsonDecoder.decodeList( '$jsonPath.contextMessages', json['contextMessages'], (String jsonPath, Object? json) => DiagnosticMessage.fromJson(jsonDecoder, jsonPath, json)); } bool? hasFix; if (json.containsKey('hasFix')) { hasFix = jsonDecoder.decodeBool('$jsonPath.hasFix', json['hasFix']); } return AnalysisError(severity, type, location, message, code, correction: correction, url: url, contextMessages: contextMessages, hasFix: hasFix); } else { throw jsonDecoder.mismatch(jsonPath, 'AnalysisError', json); } } @override Map toJson() { var result = {}; result['severity'] = severity.toJson(); result['type'] = type.toJson(); result['location'] = location.toJson(); result['message'] = message; var correction = this.correction; if (correction != null) { result['correction'] = correction; } result['code'] = code; var url = this.url; if (url != null) { result['url'] = url; } var contextMessages = this.contextMessages; if (contextMessages != null) { result['contextMessages'] = contextMessages .map((DiagnosticMessage value) => value.toJson()) .toList(); } var hasFix = this.hasFix; if (hasFix != null) { result['hasFix'] = hasFix; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is AnalysisError) { return severity == other.severity && type == other.type && location == other.location && message == other.message && correction == other.correction && code == other.code && url == other.url && listEqual(contextMessages, other.contextMessages, (DiagnosticMessage a, DiagnosticMessage b) => a == b) && hasFix == other.hasFix; } return false; } @override int get hashCode => Object.hash( severity, type, location, message, correction, code, url, Object.hashAll(contextMessages ?? []), hasFix, ); } /// AnalysisErrorSeverity /// /// enum { /// INFO /// WARNING /// ERROR /// } /// /// Clients may not extend, implement or mix-in this class. class AnalysisErrorSeverity implements Enum { static const AnalysisErrorSeverity INFO = AnalysisErrorSeverity._('INFO'); static const AnalysisErrorSeverity WARNING = AnalysisErrorSeverity._('WARNING'); static const AnalysisErrorSeverity ERROR = AnalysisErrorSeverity._('ERROR'); /// A list containing all of the enum values that are defined. static const List VALUES = [ INFO, WARNING, ERROR ]; @override final String name; const AnalysisErrorSeverity._(this.name); factory AnalysisErrorSeverity(String name) { switch (name) { case 'INFO': return INFO; case 'WARNING': return WARNING; case 'ERROR': return ERROR; } throw Exception('Illegal enum value: $name'); } factory AnalysisErrorSeverity.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return AnalysisErrorSeverity(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'AnalysisErrorSeverity', json); } @override String toString() => 'AnalysisErrorSeverity.$name'; String toJson() => name; } /// AnalysisErrorType /// /// enum { /// CHECKED_MODE_COMPILE_TIME_ERROR /// COMPILE_TIME_ERROR /// HINT /// LINT /// STATIC_TYPE_WARNING /// STATIC_WARNING /// SYNTACTIC_ERROR /// TODO /// } /// /// Clients may not extend, implement or mix-in this class. class AnalysisErrorType implements Enum { static const AnalysisErrorType CHECKED_MODE_COMPILE_TIME_ERROR = AnalysisErrorType._('CHECKED_MODE_COMPILE_TIME_ERROR'); static const AnalysisErrorType COMPILE_TIME_ERROR = AnalysisErrorType._('COMPILE_TIME_ERROR'); static const AnalysisErrorType HINT = AnalysisErrorType._('HINT'); static const AnalysisErrorType LINT = AnalysisErrorType._('LINT'); static const AnalysisErrorType STATIC_TYPE_WARNING = AnalysisErrorType._('STATIC_TYPE_WARNING'); static const AnalysisErrorType STATIC_WARNING = AnalysisErrorType._('STATIC_WARNING'); static const AnalysisErrorType SYNTACTIC_ERROR = AnalysisErrorType._('SYNTACTIC_ERROR'); static const AnalysisErrorType TODO = AnalysisErrorType._('TODO'); /// A list containing all of the enum values that are defined. static const List VALUES = [ CHECKED_MODE_COMPILE_TIME_ERROR, COMPILE_TIME_ERROR, HINT, LINT, STATIC_TYPE_WARNING, STATIC_WARNING, SYNTACTIC_ERROR, TODO ]; @override final String name; const AnalysisErrorType._(this.name); factory AnalysisErrorType(String name) { switch (name) { case 'CHECKED_MODE_COMPILE_TIME_ERROR': return CHECKED_MODE_COMPILE_TIME_ERROR; case 'COMPILE_TIME_ERROR': return COMPILE_TIME_ERROR; case 'HINT': return HINT; case 'LINT': return LINT; case 'STATIC_TYPE_WARNING': return STATIC_TYPE_WARNING; case 'STATIC_WARNING': return STATIC_WARNING; case 'SYNTACTIC_ERROR': return SYNTACTIC_ERROR; case 'TODO': return TODO; } throw Exception('Illegal enum value: $name'); } factory AnalysisErrorType.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return AnalysisErrorType(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'AnalysisErrorType', json); } @override String toString() => 'AnalysisErrorType.$name'; String toJson() => name; } /// ChangeContentOverlay /// /// { /// "type": "change" /// "edits": List /// } /// /// Clients may not extend, implement or mix-in this class. class ChangeContentOverlay implements HasToJson { /// The edits to be applied to the file. List edits; ChangeContentOverlay(this.edits); factory ChangeContentOverlay.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { if (json['type'] != 'change') { throw jsonDecoder.mismatch(jsonPath, 'equal change', json); } List edits; if (json.containsKey('edits')) { edits = jsonDecoder.decodeList( '$jsonPath.edits', json['edits'], (String jsonPath, Object? json) => SourceEdit.fromJson(jsonDecoder, jsonPath, json)); } else { throw jsonDecoder.mismatch(jsonPath, 'edits'); } return ChangeContentOverlay(edits); } else { throw jsonDecoder.mismatch(jsonPath, 'ChangeContentOverlay', json); } } @override Map toJson() { var result = {}; result['type'] = 'change'; result['edits'] = edits.map((SourceEdit value) => value.toJson()).toList(); return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is ChangeContentOverlay) { return listEqual( edits, other.edits, (SourceEdit a, SourceEdit b) => a == b); } return false; } @override int get hashCode => Object.hash( 873118866, Object.hashAll(edits), ); } /// CompletionSuggestion /// /// { /// "kind": CompletionSuggestionKind /// "relevance": int /// "completion": String /// "displayText": optional String /// "replacementOffset": optional int /// "replacementLength": optional int /// "selectionOffset": int /// "selectionLength": int /// "isDeprecated": bool /// "isPotential": bool /// "docSummary": optional String /// "docComplete": optional String /// "declaringType": optional String /// "defaultArgumentListString": optional String /// "defaultArgumentListTextRanges": optional List /// "element": optional Element /// "returnType": optional String /// "parameterNames": optional List /// "parameterTypes": optional List /// "requiredParameterCount": optional int /// "hasNamedParameters": optional bool /// "parameterName": optional String /// "parameterType": optional String /// "libraryUri": optional String /// "isNotImported": optional bool /// } /// /// Clients may not extend, implement or mix-in this class. class CompletionSuggestion implements HasToJson { /// The kind of element being suggested. CompletionSuggestionKind kind; /// The relevance of this completion suggestion where a higher number /// indicates a higher relevance. int relevance; /// The identifier to be inserted if the suggestion is selected. If the /// suggestion is for a method or function, the client might want to /// additionally insert a template for the parameters. The information /// required in order to do so is contained in other fields. String completion; /// Text to be displayed in, for example, a completion pop-up. This field is /// only defined if the displayed text should be different than the /// completion. Otherwise it is omitted. String? displayText; /// The offset of the start of the text to be replaced. If supplied, this /// should be used in preference to the offset provided on the containing /// completion results. This value may be provided independently of /// replacementLength (for example if only one differs from the completion /// result value). int? replacementOffset; /// The length of the text to be replaced. If supplied, this should be used /// in preference to the offset provided on the containing completion /// results. This value may be provided independently of replacementOffset /// (for example if only one differs from the completion result value). int? replacementLength; /// The offset, relative to the beginning of the completion, of where the /// selection should be placed after insertion. int selectionOffset; /// The number of characters that should be selected after insertion. int selectionLength; /// True if the suggested element is deprecated. bool isDeprecated; /// True if the element is not known to be valid for the target. This happens /// if the type of the target is dynamic. bool isPotential; /// An abbreviated version of the Dartdoc associated with the element being /// suggested. This field is omitted if there is no Dartdoc associated with /// the element. String? docSummary; /// The Dartdoc associated with the element being suggested. This field is /// omitted if there is no Dartdoc associated with the element. String? docComplete; /// The class that declares the element being suggested. This field is /// omitted if the suggested element is not a member of a class. String? declaringType; /// A default String for use in generating argument list source contents on /// the client side. String? defaultArgumentListString; /// Pairs of offsets and lengths describing 'defaultArgumentListString' text /// ranges suitable for use by clients to set up linked edits of default /// argument source contents. For example, given an argument list string 'x, /// y', the corresponding text range [0, 1, 3, 1], indicates two text ranges /// of length 1, starting at offsets 0 and 3. Clients can use these ranges to /// treat the 'x' and 'y' values specially for linked edits. List? defaultArgumentListTextRanges; /// Information about the element reference being suggested. Element? element; /// The return type of the getter, function or method or the type of the /// field being suggested. This field is omitted if the suggested element is /// not a getter, function or method. String? returnType; /// The names of the parameters of the function or method being suggested. /// This field is omitted if the suggested element is not a setter, function /// or method. List? parameterNames; /// The types of the parameters of the function or method being suggested. /// This field is omitted if the parameterNames field is omitted. List? parameterTypes; /// The number of required parameters for the function or method being /// suggested. This field is omitted if the parameterNames field is omitted. int? requiredParameterCount; /// True if the function or method being suggested has at least one named /// parameter. This field is omitted if the parameterNames field is omitted. bool? hasNamedParameters; /// The name of the optional parameter being suggested. This field is omitted /// if the suggestion is not the addition of an optional argument within an /// argument list. String? parameterName; /// The type of the options parameter being suggested. This field is omitted /// if the parameterName field is omitted. String? parameterType; /// This field is omitted if getSuggestions was used rather than /// getSuggestions2. /// /// This field is omitted if this suggestion corresponds to a locally /// declared element. /// /// If this suggestion corresponds to an already imported element, then this /// field is the URI of a library that provides this element, not the URI of /// the library where the element is declared. /// /// If this suggestion corresponds to an element from a not yet imported /// library, this field is the URI of a library that could be imported to /// make this suggestion accessible in the file where completion was /// requested, such as package:foo/bar.dart or /// file:///home/me/workspace/foo/test/bar_test.dart. String? libraryUri; /// True if the suggestion is for an element from a not yet imported library. /// This field is omitted if the element is declared locally, or is from /// library is already imported, so that the suggestion can be inserted as /// is, or if getSuggestions was used rather than getSuggestions2. bool? isNotImported; CompletionSuggestion( this.kind, this.relevance, this.completion, this.selectionOffset, this.selectionLength, this.isDeprecated, this.isPotential, {this.displayText, this.replacementOffset, this.replacementLength, this.docSummary, this.docComplete, this.declaringType, this.defaultArgumentListString, this.defaultArgumentListTextRanges, this.element, this.returnType, this.parameterNames, this.parameterTypes, this.requiredParameterCount, this.hasNamedParameters, this.parameterName, this.parameterType, this.libraryUri, this.isNotImported}); factory CompletionSuggestion.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { CompletionSuggestionKind kind; if (json.containsKey('kind')) { kind = CompletionSuggestionKind.fromJson( jsonDecoder, '$jsonPath.kind', json['kind']); } else { throw jsonDecoder.mismatch(jsonPath, 'kind'); } int relevance; if (json.containsKey('relevance')) { relevance = jsonDecoder.decodeInt('$jsonPath.relevance', json['relevance']); } else { throw jsonDecoder.mismatch(jsonPath, 'relevance'); } String completion; if (json.containsKey('completion')) { completion = jsonDecoder.decodeString( '$jsonPath.completion', json['completion']); } else { throw jsonDecoder.mismatch(jsonPath, 'completion'); } String? displayText; if (json.containsKey('displayText')) { displayText = jsonDecoder.decodeString( '$jsonPath.displayText', json['displayText']); } int? replacementOffset; if (json.containsKey('replacementOffset')) { replacementOffset = jsonDecoder.decodeInt( '$jsonPath.replacementOffset', json['replacementOffset']); } int? replacementLength; if (json.containsKey('replacementLength')) { replacementLength = jsonDecoder.decodeInt( '$jsonPath.replacementLength', json['replacementLength']); } int selectionOffset; if (json.containsKey('selectionOffset')) { selectionOffset = jsonDecoder.decodeInt( '$jsonPath.selectionOffset', json['selectionOffset']); } else { throw jsonDecoder.mismatch(jsonPath, 'selectionOffset'); } int selectionLength; if (json.containsKey('selectionLength')) { selectionLength = jsonDecoder.decodeInt( '$jsonPath.selectionLength', json['selectionLength']); } else { throw jsonDecoder.mismatch(jsonPath, 'selectionLength'); } bool isDeprecated; if (json.containsKey('isDeprecated')) { isDeprecated = jsonDecoder.decodeBool( '$jsonPath.isDeprecated', json['isDeprecated']); } else { throw jsonDecoder.mismatch(jsonPath, 'isDeprecated'); } bool isPotential; if (json.containsKey('isPotential')) { isPotential = jsonDecoder.decodeBool( '$jsonPath.isPotential', json['isPotential']); } else { throw jsonDecoder.mismatch(jsonPath, 'isPotential'); } String? docSummary; if (json.containsKey('docSummary')) { docSummary = jsonDecoder.decodeString( '$jsonPath.docSummary', json['docSummary']); } String? docComplete; if (json.containsKey('docComplete')) { docComplete = jsonDecoder.decodeString( '$jsonPath.docComplete', json['docComplete']); } String? declaringType; if (json.containsKey('declaringType')) { declaringType = jsonDecoder.decodeString( '$jsonPath.declaringType', json['declaringType']); } String? defaultArgumentListString; if (json.containsKey('defaultArgumentListString')) { defaultArgumentListString = jsonDecoder.decodeString( '$jsonPath.defaultArgumentListString', json['defaultArgumentListString']); } List? defaultArgumentListTextRanges; if (json.containsKey('defaultArgumentListTextRanges')) { defaultArgumentListTextRanges = jsonDecoder.decodeList( '$jsonPath.defaultArgumentListTextRanges', json['defaultArgumentListTextRanges'], jsonDecoder.decodeInt); } Element? element; if (json.containsKey('element')) { element = Element.fromJson(jsonDecoder, '$jsonPath.element', json['element']); } String? returnType; if (json.containsKey('returnType')) { returnType = jsonDecoder.decodeString( '$jsonPath.returnType', json['returnType']); } List? parameterNames; if (json.containsKey('parameterNames')) { parameterNames = jsonDecoder.decodeList('$jsonPath.parameterNames', json['parameterNames'], jsonDecoder.decodeString); } List? parameterTypes; if (json.containsKey('parameterTypes')) { parameterTypes = jsonDecoder.decodeList('$jsonPath.parameterTypes', json['parameterTypes'], jsonDecoder.decodeString); } int? requiredParameterCount; if (json.containsKey('requiredParameterCount')) { requiredParameterCount = jsonDecoder.decodeInt( '$jsonPath.requiredParameterCount', json['requiredParameterCount']); } bool? hasNamedParameters; if (json.containsKey('hasNamedParameters')) { hasNamedParameters = jsonDecoder.decodeBool( '$jsonPath.hasNamedParameters', json['hasNamedParameters']); } String? parameterName; if (json.containsKey('parameterName')) { parameterName = jsonDecoder.decodeString( '$jsonPath.parameterName', json['parameterName']); } String? parameterType; if (json.containsKey('parameterType')) { parameterType = jsonDecoder.decodeString( '$jsonPath.parameterType', json['parameterType']); } String? libraryUri; if (json.containsKey('libraryUri')) { libraryUri = jsonDecoder.decodeString( '$jsonPath.libraryUri', json['libraryUri']); } bool? isNotImported; if (json.containsKey('isNotImported')) { isNotImported = jsonDecoder.decodeBool( '$jsonPath.isNotImported', json['isNotImported']); } return CompletionSuggestion(kind, relevance, completion, selectionOffset, selectionLength, isDeprecated, isPotential, displayText: displayText, replacementOffset: replacementOffset, replacementLength: replacementLength, docSummary: docSummary, docComplete: docComplete, declaringType: declaringType, defaultArgumentListString: defaultArgumentListString, defaultArgumentListTextRanges: defaultArgumentListTextRanges, element: element, returnType: returnType, parameterNames: parameterNames, parameterTypes: parameterTypes, requiredParameterCount: requiredParameterCount, hasNamedParameters: hasNamedParameters, parameterName: parameterName, parameterType: parameterType, libraryUri: libraryUri, isNotImported: isNotImported); } else { throw jsonDecoder.mismatch(jsonPath, 'CompletionSuggestion', json); } } @override Map toJson() { var result = {}; result['kind'] = kind.toJson(); result['relevance'] = relevance; result['completion'] = completion; var displayText = this.displayText; if (displayText != null) { result['displayText'] = displayText; } var replacementOffset = this.replacementOffset; if (replacementOffset != null) { result['replacementOffset'] = replacementOffset; } var replacementLength = this.replacementLength; if (replacementLength != null) { result['replacementLength'] = replacementLength; } result['selectionOffset'] = selectionOffset; result['selectionLength'] = selectionLength; result['isDeprecated'] = isDeprecated; result['isPotential'] = isPotential; var docSummary = this.docSummary; if (docSummary != null) { result['docSummary'] = docSummary; } var docComplete = this.docComplete; if (docComplete != null) { result['docComplete'] = docComplete; } var declaringType = this.declaringType; if (declaringType != null) { result['declaringType'] = declaringType; } var defaultArgumentListString = this.defaultArgumentListString; if (defaultArgumentListString != null) { result['defaultArgumentListString'] = defaultArgumentListString; } var defaultArgumentListTextRanges = this.defaultArgumentListTextRanges; if (defaultArgumentListTextRanges != null) { result['defaultArgumentListTextRanges'] = defaultArgumentListTextRanges; } var element = this.element; if (element != null) { result['element'] = element.toJson(); } var returnType = this.returnType; if (returnType != null) { result['returnType'] = returnType; } var parameterNames = this.parameterNames; if (parameterNames != null) { result['parameterNames'] = parameterNames; } var parameterTypes = this.parameterTypes; if (parameterTypes != null) { result['parameterTypes'] = parameterTypes; } var requiredParameterCount = this.requiredParameterCount; if (requiredParameterCount != null) { result['requiredParameterCount'] = requiredParameterCount; } var hasNamedParameters = this.hasNamedParameters; if (hasNamedParameters != null) { result['hasNamedParameters'] = hasNamedParameters; } var parameterName = this.parameterName; if (parameterName != null) { result['parameterName'] = parameterName; } var parameterType = this.parameterType; if (parameterType != null) { result['parameterType'] = parameterType; } var libraryUri = this.libraryUri; if (libraryUri != null) { result['libraryUri'] = libraryUri; } var isNotImported = this.isNotImported; if (isNotImported != null) { result['isNotImported'] = isNotImported; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is CompletionSuggestion) { return kind == other.kind && relevance == other.relevance && completion == other.completion && displayText == other.displayText && replacementOffset == other.replacementOffset && replacementLength == other.replacementLength && selectionOffset == other.selectionOffset && selectionLength == other.selectionLength && isDeprecated == other.isDeprecated && isPotential == other.isPotential && docSummary == other.docSummary && docComplete == other.docComplete && declaringType == other.declaringType && defaultArgumentListString == other.defaultArgumentListString && listEqual(defaultArgumentListTextRanges, other.defaultArgumentListTextRanges, (int a, int b) => a == b) && element == other.element && returnType == other.returnType && listEqual(parameterNames, other.parameterNames, (String a, String b) => a == b) && listEqual(parameterTypes, other.parameterTypes, (String a, String b) => a == b) && requiredParameterCount == other.requiredParameterCount && hasNamedParameters == other.hasNamedParameters && parameterName == other.parameterName && parameterType == other.parameterType && libraryUri == other.libraryUri && isNotImported == other.isNotImported; } return false; } @override int get hashCode => Object.hashAll([ kind, relevance, completion, displayText, replacementOffset, replacementLength, selectionOffset, selectionLength, isDeprecated, isPotential, docSummary, docComplete, declaringType, defaultArgumentListString, Object.hashAll(defaultArgumentListTextRanges ?? []), element, returnType, Object.hashAll(parameterNames ?? []), Object.hashAll(parameterTypes ?? []), requiredParameterCount, hasNamedParameters, parameterName, parameterType, libraryUri, isNotImported, ]); } /// CompletionSuggestionKind /// /// enum { /// ARGUMENT_LIST /// IMPORT /// IDENTIFIER /// INVOCATION /// KEYWORD /// NAMED_ARGUMENT /// OPTIONAL_ARGUMENT /// OVERRIDE /// PARAMETER /// PACKAGE_NAME /// } /// /// Clients may not extend, implement or mix-in this class. class CompletionSuggestionKind implements Enum { /// A list of arguments for the method or function that is being invoked. For /// this suggestion kind, the completion field is a textual representation of /// the invocation and the parameterNames, parameterTypes, and /// requiredParameterCount attributes are defined. static const CompletionSuggestionKind ARGUMENT_LIST = CompletionSuggestionKind._('ARGUMENT_LIST'); static const CompletionSuggestionKind IMPORT = CompletionSuggestionKind._('IMPORT'); /// The element identifier should be inserted at the completion location. For /// example "someMethod" in import 'myLib.dart' show someMethod;. For /// suggestions of this kind, the element attribute is defined and the /// completion field is the element's identifier. static const CompletionSuggestionKind IDENTIFIER = CompletionSuggestionKind._('IDENTIFIER'); /// The element is being invoked at the completion location. For example, /// 'someMethod' in x.someMethod();. For suggestions of this kind, the /// element attribute is defined and the completion field is the element's /// identifier. static const CompletionSuggestionKind INVOCATION = CompletionSuggestionKind._('INVOCATION'); /// A keyword is being suggested. For suggestions of this kind, the /// completion is the keyword. static const CompletionSuggestionKind KEYWORD = CompletionSuggestionKind._('KEYWORD'); /// A named argument for the current call site is being suggested. For /// suggestions of this kind, the completion is the named argument identifier /// including a trailing ':' and a space. static const CompletionSuggestionKind NAMED_ARGUMENT = CompletionSuggestionKind._('NAMED_ARGUMENT'); static const CompletionSuggestionKind OPTIONAL_ARGUMENT = CompletionSuggestionKind._('OPTIONAL_ARGUMENT'); /// An overriding implementation of a class member is being suggested. static const CompletionSuggestionKind OVERRIDE = CompletionSuggestionKind._('OVERRIDE'); static const CompletionSuggestionKind PARAMETER = CompletionSuggestionKind._('PARAMETER'); /// The name of a pub package is being suggested. static const CompletionSuggestionKind PACKAGE_NAME = CompletionSuggestionKind._('PACKAGE_NAME'); /// A list containing all of the enum values that are defined. static const List VALUES = [ ARGUMENT_LIST, IMPORT, IDENTIFIER, INVOCATION, KEYWORD, NAMED_ARGUMENT, OPTIONAL_ARGUMENT, OVERRIDE, PARAMETER, PACKAGE_NAME ]; @override final String name; const CompletionSuggestionKind._(this.name); factory CompletionSuggestionKind(String name) { switch (name) { case 'ARGUMENT_LIST': return ARGUMENT_LIST; case 'IMPORT': return IMPORT; case 'IDENTIFIER': return IDENTIFIER; case 'INVOCATION': return INVOCATION; case 'KEYWORD': return KEYWORD; case 'NAMED_ARGUMENT': return NAMED_ARGUMENT; case 'OPTIONAL_ARGUMENT': return OPTIONAL_ARGUMENT; case 'OVERRIDE': return OVERRIDE; case 'PARAMETER': return PARAMETER; case 'PACKAGE_NAME': return PACKAGE_NAME; } throw Exception('Illegal enum value: $name'); } factory CompletionSuggestionKind.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return CompletionSuggestionKind(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'CompletionSuggestionKind', json); } @override String toString() => 'CompletionSuggestionKind.$name'; String toJson() => name; } /// DiagnosticMessage /// /// { /// "message": String /// "location": Location /// } /// /// Clients may not extend, implement or mix-in this class. class DiagnosticMessage implements HasToJson { /// The message to be displayed to the user. String message; /// The location associated with or referenced by the message. Clients should /// provide the ability to navigate to the location. Location location; DiagnosticMessage(this.message, this.location); factory DiagnosticMessage.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String message; if (json.containsKey('message')) { message = jsonDecoder.decodeString('$jsonPath.message', json['message']); } else { throw jsonDecoder.mismatch(jsonPath, 'message'); } Location location; if (json.containsKey('location')) { location = Location.fromJson( jsonDecoder, '$jsonPath.location', json['location']); } else { throw jsonDecoder.mismatch(jsonPath, 'location'); } return DiagnosticMessage(message, location); } else { throw jsonDecoder.mismatch(jsonPath, 'DiagnosticMessage', json); } } @override Map toJson() { var result = {}; result['message'] = message; result['location'] = location.toJson(); return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is DiagnosticMessage) { return message == other.message && location == other.location; } return false; } @override int get hashCode => Object.hash( message, location, ); } /// Element /// /// { /// "kind": ElementKind /// "name": String /// "location": optional Location /// "flags": int /// "parameters": optional String /// "returnType": optional String /// "typeParameters": optional String /// "aliasedType": optional String /// } /// /// Clients may not extend, implement or mix-in this class. class Element implements HasToJson { static const int FLAG_ABSTRACT = 0x01; static const int FLAG_CONST = 0x02; static const int FLAG_FINAL = 0x04; static const int FLAG_STATIC = 0x08; static const int FLAG_PRIVATE = 0x10; static const int FLAG_DEPRECATED = 0x20; static int makeFlags( {bool isAbstract = false, bool isConst = false, bool isFinal = false, bool isStatic = false, bool isPrivate = false, bool isDeprecated = false}) { var flags = 0; if (isAbstract) flags |= FLAG_ABSTRACT; if (isConst) flags |= FLAG_CONST; if (isFinal) flags |= FLAG_FINAL; if (isStatic) flags |= FLAG_STATIC; if (isPrivate) flags |= FLAG_PRIVATE; if (isDeprecated) flags |= FLAG_DEPRECATED; return flags; } /// The kind of the element. ElementKind kind; /// The name of the element. This is typically used as the label in the /// outline. String name; /// The location of the name in the declaration of the element. Location? location; /// A bit-map containing the following flags: /// /// - 0x01 - set if the element is explicitly or implicitly abstract /// - 0x02 - set if the element was declared to be 'const' /// - 0x04 - set if the element was declared to be 'final' /// - 0x08 - set if the element is a static member of a class or is a /// top-level function or field /// - 0x10 - set if the element is private /// - 0x20 - set if the element is deprecated int flags; /// The parameter list for the element. If the element is not a method or /// function this field will not be defined. If the element doesn't have /// parameters (e.g. getter), this field will not be defined. If the element /// has zero parameters, this field will have a value of "()". String? parameters; /// The return type of the element. If the element is not a method or /// function this field will not be defined. If the element does not have a /// declared return type, this field will contain an empty string. String? returnType; /// The type parameter list for the element. If the element doesn't have type /// parameters, this field will not be defined. String? typeParameters; /// If the element is a type alias, this field is the aliased type. Otherwise /// this field will not be defined. String? aliasedType; Element(this.kind, this.name, this.flags, {this.location, this.parameters, this.returnType, this.typeParameters, this.aliasedType}); factory Element.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { ElementKind kind; if (json.containsKey('kind')) { kind = ElementKind.fromJson(jsonDecoder, '$jsonPath.kind', json['kind']); } else { throw jsonDecoder.mismatch(jsonPath, 'kind'); } String name; if (json.containsKey('name')) { name = jsonDecoder.decodeString('$jsonPath.name', json['name']); } else { throw jsonDecoder.mismatch(jsonPath, 'name'); } Location? location; if (json.containsKey('location')) { location = Location.fromJson( jsonDecoder, '$jsonPath.location', json['location']); } int flags; if (json.containsKey('flags')) { flags = jsonDecoder.decodeInt('$jsonPath.flags', json['flags']); } else { throw jsonDecoder.mismatch(jsonPath, 'flags'); } String? parameters; if (json.containsKey('parameters')) { parameters = jsonDecoder.decodeString( '$jsonPath.parameters', json['parameters']); } String? returnType; if (json.containsKey('returnType')) { returnType = jsonDecoder.decodeString( '$jsonPath.returnType', json['returnType']); } String? typeParameters; if (json.containsKey('typeParameters')) { typeParameters = jsonDecoder.decodeString( '$jsonPath.typeParameters', json['typeParameters']); } String? aliasedType; if (json.containsKey('aliasedType')) { aliasedType = jsonDecoder.decodeString( '$jsonPath.aliasedType', json['aliasedType']); } return Element(kind, name, flags, location: location, parameters: parameters, returnType: returnType, typeParameters: typeParameters, aliasedType: aliasedType); } else { throw jsonDecoder.mismatch(jsonPath, 'Element', json); } } bool get isAbstract => (flags & FLAG_ABSTRACT) != 0; bool get isConst => (flags & FLAG_CONST) != 0; bool get isFinal => (flags & FLAG_FINAL) != 0; bool get isStatic => (flags & FLAG_STATIC) != 0; bool get isPrivate => (flags & FLAG_PRIVATE) != 0; bool get isDeprecated => (flags & FLAG_DEPRECATED) != 0; @override Map toJson() { var result = {}; result['kind'] = kind.toJson(); result['name'] = name; var location = this.location; if (location != null) { result['location'] = location.toJson(); } result['flags'] = flags; var parameters = this.parameters; if (parameters != null) { result['parameters'] = parameters; } var returnType = this.returnType; if (returnType != null) { result['returnType'] = returnType; } var typeParameters = this.typeParameters; if (typeParameters != null) { result['typeParameters'] = typeParameters; } var aliasedType = this.aliasedType; if (aliasedType != null) { result['aliasedType'] = aliasedType; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is Element) { return kind == other.kind && name == other.name && location == other.location && flags == other.flags && parameters == other.parameters && returnType == other.returnType && typeParameters == other.typeParameters && aliasedType == other.aliasedType; } return false; } @override int get hashCode => Object.hash( kind, name, location, flags, parameters, returnType, typeParameters, aliasedType, ); } /// ElementKind /// /// enum { /// CLASS /// CLASS_TYPE_ALIAS /// COMPILATION_UNIT /// CONSTRUCTOR /// CONSTRUCTOR_INVOCATION /// ENUM /// ENUM_CONSTANT /// EXTENSION /// FIELD /// FILE /// FUNCTION /// FUNCTION_INVOCATION /// FUNCTION_TYPE_ALIAS /// GETTER /// LABEL /// LIBRARY /// LOCAL_VARIABLE /// METHOD /// MIXIN /// PARAMETER /// PREFIX /// SETTER /// TOP_LEVEL_VARIABLE /// TYPE_ALIAS /// TYPE_PARAMETER /// UNIT_TEST_GROUP /// UNIT_TEST_TEST /// UNKNOWN /// } /// /// Clients may not extend, implement or mix-in this class. class ElementKind implements Enum { static const ElementKind CLASS = ElementKind._('CLASS'); static const ElementKind CLASS_TYPE_ALIAS = ElementKind._('CLASS_TYPE_ALIAS'); static const ElementKind COMPILATION_UNIT = ElementKind._('COMPILATION_UNIT'); static const ElementKind CONSTRUCTOR = ElementKind._('CONSTRUCTOR'); static const ElementKind CONSTRUCTOR_INVOCATION = ElementKind._('CONSTRUCTOR_INVOCATION'); static const ElementKind ENUM = ElementKind._('ENUM'); static const ElementKind ENUM_CONSTANT = ElementKind._('ENUM_CONSTANT'); static const ElementKind EXTENSION = ElementKind._('EXTENSION'); static const ElementKind FIELD = ElementKind._('FIELD'); static const ElementKind FILE = ElementKind._('FILE'); static const ElementKind FUNCTION = ElementKind._('FUNCTION'); static const ElementKind FUNCTION_INVOCATION = ElementKind._('FUNCTION_INVOCATION'); static const ElementKind FUNCTION_TYPE_ALIAS = ElementKind._('FUNCTION_TYPE_ALIAS'); static const ElementKind GETTER = ElementKind._('GETTER'); static const ElementKind LABEL = ElementKind._('LABEL'); static const ElementKind LIBRARY = ElementKind._('LIBRARY'); static const ElementKind LOCAL_VARIABLE = ElementKind._('LOCAL_VARIABLE'); static const ElementKind METHOD = ElementKind._('METHOD'); static const ElementKind MIXIN = ElementKind._('MIXIN'); static const ElementKind PARAMETER = ElementKind._('PARAMETER'); static const ElementKind PREFIX = ElementKind._('PREFIX'); static const ElementKind SETTER = ElementKind._('SETTER'); static const ElementKind TOP_LEVEL_VARIABLE = ElementKind._('TOP_LEVEL_VARIABLE'); static const ElementKind TYPE_ALIAS = ElementKind._('TYPE_ALIAS'); static const ElementKind TYPE_PARAMETER = ElementKind._('TYPE_PARAMETER'); static const ElementKind UNIT_TEST_GROUP = ElementKind._('UNIT_TEST_GROUP'); static const ElementKind UNIT_TEST_TEST = ElementKind._('UNIT_TEST_TEST'); static const ElementKind UNKNOWN = ElementKind._('UNKNOWN'); /// A list containing all of the enum values that are defined. static const List VALUES = [ CLASS, CLASS_TYPE_ALIAS, COMPILATION_UNIT, CONSTRUCTOR, CONSTRUCTOR_INVOCATION, ENUM, ENUM_CONSTANT, EXTENSION, FIELD, FILE, FUNCTION, FUNCTION_INVOCATION, FUNCTION_TYPE_ALIAS, GETTER, LABEL, LIBRARY, LOCAL_VARIABLE, METHOD, MIXIN, PARAMETER, PREFIX, SETTER, TOP_LEVEL_VARIABLE, TYPE_ALIAS, TYPE_PARAMETER, UNIT_TEST_GROUP, UNIT_TEST_TEST, UNKNOWN ]; @override final String name; const ElementKind._(this.name); factory ElementKind(String name) { switch (name) { case 'CLASS': return CLASS; case 'CLASS_TYPE_ALIAS': return CLASS_TYPE_ALIAS; case 'COMPILATION_UNIT': return COMPILATION_UNIT; case 'CONSTRUCTOR': return CONSTRUCTOR; case 'CONSTRUCTOR_INVOCATION': return CONSTRUCTOR_INVOCATION; case 'ENUM': return ENUM; case 'ENUM_CONSTANT': return ENUM_CONSTANT; case 'EXTENSION': return EXTENSION; case 'FIELD': return FIELD; case 'FILE': return FILE; case 'FUNCTION': return FUNCTION; case 'FUNCTION_INVOCATION': return FUNCTION_INVOCATION; case 'FUNCTION_TYPE_ALIAS': return FUNCTION_TYPE_ALIAS; case 'GETTER': return GETTER; case 'LABEL': return LABEL; case 'LIBRARY': return LIBRARY; case 'LOCAL_VARIABLE': return LOCAL_VARIABLE; case 'METHOD': return METHOD; case 'MIXIN': return MIXIN; case 'PARAMETER': return PARAMETER; case 'PREFIX': return PREFIX; case 'SETTER': return SETTER; case 'TOP_LEVEL_VARIABLE': return TOP_LEVEL_VARIABLE; case 'TYPE_ALIAS': return TYPE_ALIAS; case 'TYPE_PARAMETER': return TYPE_PARAMETER; case 'UNIT_TEST_GROUP': return UNIT_TEST_GROUP; case 'UNIT_TEST_TEST': return UNIT_TEST_TEST; case 'UNKNOWN': return UNKNOWN; } throw Exception('Illegal enum value: $name'); } factory ElementKind.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return ElementKind(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'ElementKind', json); } @override String toString() => 'ElementKind.$name'; String toJson() => name; } /// FoldingKind /// /// enum { /// ANNOTATIONS /// BLOCK /// CLASS_BODY /// COMMENT /// DIRECTIVES /// DOCUMENTATION_COMMENT /// FILE_HEADER /// FUNCTION_BODY /// INVOCATION /// LITERAL /// PARAMETERS /// } /// /// Clients may not extend, implement or mix-in this class. class FoldingKind implements Enum { static const FoldingKind ANNOTATIONS = FoldingKind._('ANNOTATIONS'); static const FoldingKind BLOCK = FoldingKind._('BLOCK'); static const FoldingKind CLASS_BODY = FoldingKind._('CLASS_BODY'); static const FoldingKind COMMENT = FoldingKind._('COMMENT'); static const FoldingKind DIRECTIVES = FoldingKind._('DIRECTIVES'); static const FoldingKind DOCUMENTATION_COMMENT = FoldingKind._('DOCUMENTATION_COMMENT'); static const FoldingKind FILE_HEADER = FoldingKind._('FILE_HEADER'); static const FoldingKind FUNCTION_BODY = FoldingKind._('FUNCTION_BODY'); static const FoldingKind INVOCATION = FoldingKind._('INVOCATION'); static const FoldingKind LITERAL = FoldingKind._('LITERAL'); static const FoldingKind PARAMETERS = FoldingKind._('PARAMETERS'); /// A list containing all of the enum values that are defined. static const List VALUES = [ ANNOTATIONS, BLOCK, CLASS_BODY, COMMENT, DIRECTIVES, DOCUMENTATION_COMMENT, FILE_HEADER, FUNCTION_BODY, INVOCATION, LITERAL, PARAMETERS ]; @override final String name; const FoldingKind._(this.name); factory FoldingKind(String name) { switch (name) { case 'ANNOTATIONS': return ANNOTATIONS; case 'BLOCK': return BLOCK; case 'CLASS_BODY': return CLASS_BODY; case 'COMMENT': return COMMENT; case 'DIRECTIVES': return DIRECTIVES; case 'DOCUMENTATION_COMMENT': return DOCUMENTATION_COMMENT; case 'FILE_HEADER': return FILE_HEADER; case 'FUNCTION_BODY': return FUNCTION_BODY; case 'INVOCATION': return INVOCATION; case 'LITERAL': return LITERAL; case 'PARAMETERS': return PARAMETERS; } throw Exception('Illegal enum value: $name'); } factory FoldingKind.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return FoldingKind(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'FoldingKind', json); } @override String toString() => 'FoldingKind.$name'; String toJson() => name; } /// FoldingRegion /// /// { /// "kind": FoldingKind /// "offset": int /// "length": int /// } /// /// Clients may not extend, implement or mix-in this class. class FoldingRegion implements HasToJson { /// The kind of the region. FoldingKind kind; /// The offset of the region to be folded. int offset; /// The length of the region to be folded. int length; FoldingRegion(this.kind, this.offset, this.length); factory FoldingRegion.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { FoldingKind kind; if (json.containsKey('kind')) { kind = FoldingKind.fromJson(jsonDecoder, '$jsonPath.kind', json['kind']); } else { throw jsonDecoder.mismatch(jsonPath, 'kind'); } int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } return FoldingRegion(kind, offset, length); } else { throw jsonDecoder.mismatch(jsonPath, 'FoldingRegion', json); } } @override Map toJson() { var result = {}; result['kind'] = kind.toJson(); result['offset'] = offset; result['length'] = length; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is FoldingRegion) { return kind == other.kind && offset == other.offset && length == other.length; } return false; } @override int get hashCode => Object.hash( kind, offset, length, ); } /// HighlightRegion /// /// { /// "type": HighlightRegionType /// "offset": int /// "length": int /// } /// /// Clients may not extend, implement or mix-in this class. class HighlightRegion implements HasToJson { /// The type of highlight associated with the region. HighlightRegionType type; /// The offset of the region to be highlighted. int offset; /// The length of the region to be highlighted. int length; HighlightRegion(this.type, this.offset, this.length); factory HighlightRegion.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { HighlightRegionType type; if (json.containsKey('type')) { type = HighlightRegionType.fromJson( jsonDecoder, '$jsonPath.type', json['type']); } else { throw jsonDecoder.mismatch(jsonPath, 'type'); } int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } return HighlightRegion(type, offset, length); } else { throw jsonDecoder.mismatch(jsonPath, 'HighlightRegion', json); } } @override Map toJson() { var result = {}; result['type'] = type.toJson(); result['offset'] = offset; result['length'] = length; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is HighlightRegion) { return type == other.type && offset == other.offset && length == other.length; } return false; } @override int get hashCode => Object.hash( type, offset, length, ); } /// HighlightRegionType /// /// enum { /// ANNOTATION /// BUILT_IN /// CLASS /// COMMENT_BLOCK /// COMMENT_DOCUMENTATION /// COMMENT_END_OF_LINE /// CONSTRUCTOR /// CONSTRUCTOR_TEAR_OFF /// DIRECTIVE /// DYNAMIC_TYPE /// DYNAMIC_LOCAL_VARIABLE_DECLARATION /// DYNAMIC_LOCAL_VARIABLE_REFERENCE /// DYNAMIC_PARAMETER_DECLARATION /// DYNAMIC_PARAMETER_REFERENCE /// ENUM /// ENUM_CONSTANT /// EXTENSION /// FIELD /// FIELD_STATIC /// FUNCTION /// FUNCTION_DECLARATION /// FUNCTION_TYPE_ALIAS /// GETTER_DECLARATION /// IDENTIFIER_DEFAULT /// IMPORT_PREFIX /// INSTANCE_FIELD_DECLARATION /// INSTANCE_FIELD_REFERENCE /// INSTANCE_GETTER_DECLARATION /// INSTANCE_GETTER_REFERENCE /// INSTANCE_METHOD_DECLARATION /// INSTANCE_METHOD_REFERENCE /// INSTANCE_METHOD_TEAR_OFF /// INSTANCE_SETTER_DECLARATION /// INSTANCE_SETTER_REFERENCE /// INVALID_STRING_ESCAPE /// KEYWORD /// LABEL /// LIBRARY_NAME /// LITERAL_BOOLEAN /// LITERAL_DOUBLE /// LITERAL_INTEGER /// LITERAL_LIST /// LITERAL_MAP /// LITERAL_RECORD /// LITERAL_STRING /// LOCAL_FUNCTION_DECLARATION /// LOCAL_FUNCTION_REFERENCE /// LOCAL_FUNCTION_TEAR_OFF /// LOCAL_VARIABLE /// LOCAL_VARIABLE_DECLARATION /// LOCAL_VARIABLE_REFERENCE /// METHOD /// METHOD_DECLARATION /// METHOD_DECLARATION_STATIC /// METHOD_STATIC /// PARAMETER /// SETTER_DECLARATION /// TOP_LEVEL_VARIABLE /// PARAMETER_DECLARATION /// PARAMETER_REFERENCE /// STATIC_FIELD_DECLARATION /// STATIC_GETTER_DECLARATION /// STATIC_GETTER_REFERENCE /// STATIC_METHOD_DECLARATION /// STATIC_METHOD_REFERENCE /// STATIC_METHOD_TEAR_OFF /// STATIC_SETTER_DECLARATION /// STATIC_SETTER_REFERENCE /// TOP_LEVEL_FUNCTION_DECLARATION /// TOP_LEVEL_FUNCTION_REFERENCE /// TOP_LEVEL_FUNCTION_TEAR_OFF /// TOP_LEVEL_GETTER_DECLARATION /// TOP_LEVEL_GETTER_REFERENCE /// TOP_LEVEL_SETTER_DECLARATION /// TOP_LEVEL_SETTER_REFERENCE /// TOP_LEVEL_VARIABLE_DECLARATION /// TYPE_ALIAS /// TYPE_NAME_DYNAMIC /// TYPE_PARAMETER /// UNRESOLVED_INSTANCE_MEMBER_REFERENCE /// VALID_STRING_ESCAPE /// } /// /// Clients may not extend, implement or mix-in this class. class HighlightRegionType implements Enum { static const HighlightRegionType ANNOTATION = HighlightRegionType._('ANNOTATION'); static const HighlightRegionType BUILT_IN = HighlightRegionType._('BUILT_IN'); static const HighlightRegionType CLASS = HighlightRegionType._('CLASS'); static const HighlightRegionType COMMENT_BLOCK = HighlightRegionType._('COMMENT_BLOCK'); static const HighlightRegionType COMMENT_DOCUMENTATION = HighlightRegionType._('COMMENT_DOCUMENTATION'); static const HighlightRegionType COMMENT_END_OF_LINE = HighlightRegionType._('COMMENT_END_OF_LINE'); static const HighlightRegionType CONSTRUCTOR = HighlightRegionType._('CONSTRUCTOR'); static const HighlightRegionType CONSTRUCTOR_TEAR_OFF = HighlightRegionType._('CONSTRUCTOR_TEAR_OFF'); static const HighlightRegionType DIRECTIVE = HighlightRegionType._('DIRECTIVE'); /// Deprecated - no longer sent. static const HighlightRegionType DYNAMIC_TYPE = HighlightRegionType._('DYNAMIC_TYPE'); static const HighlightRegionType DYNAMIC_LOCAL_VARIABLE_DECLARATION = HighlightRegionType._('DYNAMIC_LOCAL_VARIABLE_DECLARATION'); static const HighlightRegionType DYNAMIC_LOCAL_VARIABLE_REFERENCE = HighlightRegionType._('DYNAMIC_LOCAL_VARIABLE_REFERENCE'); static const HighlightRegionType DYNAMIC_PARAMETER_DECLARATION = HighlightRegionType._('DYNAMIC_PARAMETER_DECLARATION'); static const HighlightRegionType DYNAMIC_PARAMETER_REFERENCE = HighlightRegionType._('DYNAMIC_PARAMETER_REFERENCE'); static const HighlightRegionType ENUM = HighlightRegionType._('ENUM'); static const HighlightRegionType ENUM_CONSTANT = HighlightRegionType._('ENUM_CONSTANT'); static const HighlightRegionType EXTENSION = HighlightRegionType._('EXTENSION'); /// Deprecated - no longer sent. static const HighlightRegionType FIELD = HighlightRegionType._('FIELD'); /// Deprecated - no longer sent. static const HighlightRegionType FIELD_STATIC = HighlightRegionType._('FIELD_STATIC'); /// Deprecated - no longer sent. static const HighlightRegionType FUNCTION = HighlightRegionType._('FUNCTION'); /// Deprecated - no longer sent. static const HighlightRegionType FUNCTION_DECLARATION = HighlightRegionType._('FUNCTION_DECLARATION'); static const HighlightRegionType FUNCTION_TYPE_ALIAS = HighlightRegionType._('FUNCTION_TYPE_ALIAS'); /// Deprecated - no longer sent. static const HighlightRegionType GETTER_DECLARATION = HighlightRegionType._('GETTER_DECLARATION'); static const HighlightRegionType IDENTIFIER_DEFAULT = HighlightRegionType._('IDENTIFIER_DEFAULT'); static const HighlightRegionType IMPORT_PREFIX = HighlightRegionType._('IMPORT_PREFIX'); static const HighlightRegionType INSTANCE_FIELD_DECLARATION = HighlightRegionType._('INSTANCE_FIELD_DECLARATION'); static const HighlightRegionType INSTANCE_FIELD_REFERENCE = HighlightRegionType._('INSTANCE_FIELD_REFERENCE'); static const HighlightRegionType INSTANCE_GETTER_DECLARATION = HighlightRegionType._('INSTANCE_GETTER_DECLARATION'); static const HighlightRegionType INSTANCE_GETTER_REFERENCE = HighlightRegionType._('INSTANCE_GETTER_REFERENCE'); static const HighlightRegionType INSTANCE_METHOD_DECLARATION = HighlightRegionType._('INSTANCE_METHOD_DECLARATION'); static const HighlightRegionType INSTANCE_METHOD_REFERENCE = HighlightRegionType._('INSTANCE_METHOD_REFERENCE'); static const HighlightRegionType INSTANCE_METHOD_TEAR_OFF = HighlightRegionType._('INSTANCE_METHOD_TEAR_OFF'); static const HighlightRegionType INSTANCE_SETTER_DECLARATION = HighlightRegionType._('INSTANCE_SETTER_DECLARATION'); static const HighlightRegionType INSTANCE_SETTER_REFERENCE = HighlightRegionType._('INSTANCE_SETTER_REFERENCE'); static const HighlightRegionType INVALID_STRING_ESCAPE = HighlightRegionType._('INVALID_STRING_ESCAPE'); static const HighlightRegionType KEYWORD = HighlightRegionType._('KEYWORD'); static const HighlightRegionType LABEL = HighlightRegionType._('LABEL'); static const HighlightRegionType LIBRARY_NAME = HighlightRegionType._('LIBRARY_NAME'); static const HighlightRegionType LITERAL_BOOLEAN = HighlightRegionType._('LITERAL_BOOLEAN'); static const HighlightRegionType LITERAL_DOUBLE = HighlightRegionType._('LITERAL_DOUBLE'); static const HighlightRegionType LITERAL_INTEGER = HighlightRegionType._('LITERAL_INTEGER'); static const HighlightRegionType LITERAL_LIST = HighlightRegionType._('LITERAL_LIST'); static const HighlightRegionType LITERAL_MAP = HighlightRegionType._('LITERAL_MAP'); static const HighlightRegionType LITERAL_RECORD = HighlightRegionType._('LITERAL_RECORD'); static const HighlightRegionType LITERAL_STRING = HighlightRegionType._('LITERAL_STRING'); static const HighlightRegionType LOCAL_FUNCTION_DECLARATION = HighlightRegionType._('LOCAL_FUNCTION_DECLARATION'); static const HighlightRegionType LOCAL_FUNCTION_REFERENCE = HighlightRegionType._('LOCAL_FUNCTION_REFERENCE'); static const HighlightRegionType LOCAL_FUNCTION_TEAR_OFF = HighlightRegionType._('LOCAL_FUNCTION_TEAR_OFF'); /// Deprecated - no longer sent. static const HighlightRegionType LOCAL_VARIABLE = HighlightRegionType._('LOCAL_VARIABLE'); static const HighlightRegionType LOCAL_VARIABLE_DECLARATION = HighlightRegionType._('LOCAL_VARIABLE_DECLARATION'); static const HighlightRegionType LOCAL_VARIABLE_REFERENCE = HighlightRegionType._('LOCAL_VARIABLE_REFERENCE'); /// Deprecated - no longer sent. static const HighlightRegionType METHOD = HighlightRegionType._('METHOD'); /// Deprecated - no longer sent. static const HighlightRegionType METHOD_DECLARATION = HighlightRegionType._('METHOD_DECLARATION'); /// Deprecated - no longer sent. static const HighlightRegionType METHOD_DECLARATION_STATIC = HighlightRegionType._('METHOD_DECLARATION_STATIC'); /// Deprecated - no longer sent. static const HighlightRegionType METHOD_STATIC = HighlightRegionType._('METHOD_STATIC'); /// Deprecated - no longer sent. static const HighlightRegionType PARAMETER = HighlightRegionType._('PARAMETER'); /// Deprecated - no longer sent. static const HighlightRegionType SETTER_DECLARATION = HighlightRegionType._('SETTER_DECLARATION'); /// Deprecated - no longer sent. static const HighlightRegionType TOP_LEVEL_VARIABLE = HighlightRegionType._('TOP_LEVEL_VARIABLE'); static const HighlightRegionType PARAMETER_DECLARATION = HighlightRegionType._('PARAMETER_DECLARATION'); static const HighlightRegionType PARAMETER_REFERENCE = HighlightRegionType._('PARAMETER_REFERENCE'); static const HighlightRegionType STATIC_FIELD_DECLARATION = HighlightRegionType._('STATIC_FIELD_DECLARATION'); static const HighlightRegionType STATIC_GETTER_DECLARATION = HighlightRegionType._('STATIC_GETTER_DECLARATION'); static const HighlightRegionType STATIC_GETTER_REFERENCE = HighlightRegionType._('STATIC_GETTER_REFERENCE'); static const HighlightRegionType STATIC_METHOD_DECLARATION = HighlightRegionType._('STATIC_METHOD_DECLARATION'); static const HighlightRegionType STATIC_METHOD_REFERENCE = HighlightRegionType._('STATIC_METHOD_REFERENCE'); static const HighlightRegionType STATIC_METHOD_TEAR_OFF = HighlightRegionType._('STATIC_METHOD_TEAR_OFF'); static const HighlightRegionType STATIC_SETTER_DECLARATION = HighlightRegionType._('STATIC_SETTER_DECLARATION'); static const HighlightRegionType STATIC_SETTER_REFERENCE = HighlightRegionType._('STATIC_SETTER_REFERENCE'); static const HighlightRegionType TOP_LEVEL_FUNCTION_DECLARATION = HighlightRegionType._('TOP_LEVEL_FUNCTION_DECLARATION'); static const HighlightRegionType TOP_LEVEL_FUNCTION_REFERENCE = HighlightRegionType._('TOP_LEVEL_FUNCTION_REFERENCE'); static const HighlightRegionType TOP_LEVEL_FUNCTION_TEAR_OFF = HighlightRegionType._('TOP_LEVEL_FUNCTION_TEAR_OFF'); static const HighlightRegionType TOP_LEVEL_GETTER_DECLARATION = HighlightRegionType._('TOP_LEVEL_GETTER_DECLARATION'); static const HighlightRegionType TOP_LEVEL_GETTER_REFERENCE = HighlightRegionType._('TOP_LEVEL_GETTER_REFERENCE'); static const HighlightRegionType TOP_LEVEL_SETTER_DECLARATION = HighlightRegionType._('TOP_LEVEL_SETTER_DECLARATION'); static const HighlightRegionType TOP_LEVEL_SETTER_REFERENCE = HighlightRegionType._('TOP_LEVEL_SETTER_REFERENCE'); static const HighlightRegionType TOP_LEVEL_VARIABLE_DECLARATION = HighlightRegionType._('TOP_LEVEL_VARIABLE_DECLARATION'); static const HighlightRegionType TYPE_ALIAS = HighlightRegionType._('TYPE_ALIAS'); static const HighlightRegionType TYPE_NAME_DYNAMIC = HighlightRegionType._('TYPE_NAME_DYNAMIC'); static const HighlightRegionType TYPE_PARAMETER = HighlightRegionType._('TYPE_PARAMETER'); static const HighlightRegionType UNRESOLVED_INSTANCE_MEMBER_REFERENCE = HighlightRegionType._('UNRESOLVED_INSTANCE_MEMBER_REFERENCE'); static const HighlightRegionType VALID_STRING_ESCAPE = HighlightRegionType._('VALID_STRING_ESCAPE'); /// A list containing all of the enum values that are defined. static const List VALUES = [ ANNOTATION, BUILT_IN, CLASS, COMMENT_BLOCK, COMMENT_DOCUMENTATION, COMMENT_END_OF_LINE, CONSTRUCTOR, CONSTRUCTOR_TEAR_OFF, DIRECTIVE, DYNAMIC_TYPE, DYNAMIC_LOCAL_VARIABLE_DECLARATION, DYNAMIC_LOCAL_VARIABLE_REFERENCE, DYNAMIC_PARAMETER_DECLARATION, DYNAMIC_PARAMETER_REFERENCE, ENUM, ENUM_CONSTANT, EXTENSION, FIELD, FIELD_STATIC, FUNCTION, FUNCTION_DECLARATION, FUNCTION_TYPE_ALIAS, GETTER_DECLARATION, IDENTIFIER_DEFAULT, IMPORT_PREFIX, INSTANCE_FIELD_DECLARATION, INSTANCE_FIELD_REFERENCE, INSTANCE_GETTER_DECLARATION, INSTANCE_GETTER_REFERENCE, INSTANCE_METHOD_DECLARATION, INSTANCE_METHOD_REFERENCE, INSTANCE_METHOD_TEAR_OFF, INSTANCE_SETTER_DECLARATION, INSTANCE_SETTER_REFERENCE, INVALID_STRING_ESCAPE, KEYWORD, LABEL, LIBRARY_NAME, LITERAL_BOOLEAN, LITERAL_DOUBLE, LITERAL_INTEGER, LITERAL_LIST, LITERAL_MAP, LITERAL_RECORD, LITERAL_STRING, LOCAL_FUNCTION_DECLARATION, LOCAL_FUNCTION_REFERENCE, LOCAL_FUNCTION_TEAR_OFF, LOCAL_VARIABLE, LOCAL_VARIABLE_DECLARATION, LOCAL_VARIABLE_REFERENCE, METHOD, METHOD_DECLARATION, METHOD_DECLARATION_STATIC, METHOD_STATIC, PARAMETER, SETTER_DECLARATION, TOP_LEVEL_VARIABLE, PARAMETER_DECLARATION, PARAMETER_REFERENCE, STATIC_FIELD_DECLARATION, STATIC_GETTER_DECLARATION, STATIC_GETTER_REFERENCE, STATIC_METHOD_DECLARATION, STATIC_METHOD_REFERENCE, STATIC_METHOD_TEAR_OFF, STATIC_SETTER_DECLARATION, STATIC_SETTER_REFERENCE, TOP_LEVEL_FUNCTION_DECLARATION, TOP_LEVEL_FUNCTION_REFERENCE, TOP_LEVEL_FUNCTION_TEAR_OFF, TOP_LEVEL_GETTER_DECLARATION, TOP_LEVEL_GETTER_REFERENCE, TOP_LEVEL_SETTER_DECLARATION, TOP_LEVEL_SETTER_REFERENCE, TOP_LEVEL_VARIABLE_DECLARATION, TYPE_ALIAS, TYPE_NAME_DYNAMIC, TYPE_PARAMETER, UNRESOLVED_INSTANCE_MEMBER_REFERENCE, VALID_STRING_ESCAPE ]; @override final String name; const HighlightRegionType._(this.name); factory HighlightRegionType(String name) { switch (name) { case 'ANNOTATION': return ANNOTATION; case 'BUILT_IN': return BUILT_IN; case 'CLASS': return CLASS; case 'COMMENT_BLOCK': return COMMENT_BLOCK; case 'COMMENT_DOCUMENTATION': return COMMENT_DOCUMENTATION; case 'COMMENT_END_OF_LINE': return COMMENT_END_OF_LINE; case 'CONSTRUCTOR': return CONSTRUCTOR; case 'CONSTRUCTOR_TEAR_OFF': return CONSTRUCTOR_TEAR_OFF; case 'DIRECTIVE': return DIRECTIVE; case 'DYNAMIC_TYPE': return DYNAMIC_TYPE; case 'DYNAMIC_LOCAL_VARIABLE_DECLARATION': return DYNAMIC_LOCAL_VARIABLE_DECLARATION; case 'DYNAMIC_LOCAL_VARIABLE_REFERENCE': return DYNAMIC_LOCAL_VARIABLE_REFERENCE; case 'DYNAMIC_PARAMETER_DECLARATION': return DYNAMIC_PARAMETER_DECLARATION; case 'DYNAMIC_PARAMETER_REFERENCE': return DYNAMIC_PARAMETER_REFERENCE; case 'ENUM': return ENUM; case 'ENUM_CONSTANT': return ENUM_CONSTANT; case 'EXTENSION': return EXTENSION; case 'FIELD': return FIELD; case 'FIELD_STATIC': return FIELD_STATIC; case 'FUNCTION': return FUNCTION; case 'FUNCTION_DECLARATION': return FUNCTION_DECLARATION; case 'FUNCTION_TYPE_ALIAS': return FUNCTION_TYPE_ALIAS; case 'GETTER_DECLARATION': return GETTER_DECLARATION; case 'IDENTIFIER_DEFAULT': return IDENTIFIER_DEFAULT; case 'IMPORT_PREFIX': return IMPORT_PREFIX; case 'INSTANCE_FIELD_DECLARATION': return INSTANCE_FIELD_DECLARATION; case 'INSTANCE_FIELD_REFERENCE': return INSTANCE_FIELD_REFERENCE; case 'INSTANCE_GETTER_DECLARATION': return INSTANCE_GETTER_DECLARATION; case 'INSTANCE_GETTER_REFERENCE': return INSTANCE_GETTER_REFERENCE; case 'INSTANCE_METHOD_DECLARATION': return INSTANCE_METHOD_DECLARATION; case 'INSTANCE_METHOD_REFERENCE': return INSTANCE_METHOD_REFERENCE; case 'INSTANCE_METHOD_TEAR_OFF': return INSTANCE_METHOD_TEAR_OFF; case 'INSTANCE_SETTER_DECLARATION': return INSTANCE_SETTER_DECLARATION; case 'INSTANCE_SETTER_REFERENCE': return INSTANCE_SETTER_REFERENCE; case 'INVALID_STRING_ESCAPE': return INVALID_STRING_ESCAPE; case 'KEYWORD': return KEYWORD; case 'LABEL': return LABEL; case 'LIBRARY_NAME': return LIBRARY_NAME; case 'LITERAL_BOOLEAN': return LITERAL_BOOLEAN; case 'LITERAL_DOUBLE': return LITERAL_DOUBLE; case 'LITERAL_INTEGER': return LITERAL_INTEGER; case 'LITERAL_LIST': return LITERAL_LIST; case 'LITERAL_MAP': return LITERAL_MAP; case 'LITERAL_RECORD': return LITERAL_RECORD; case 'LITERAL_STRING': return LITERAL_STRING; case 'LOCAL_FUNCTION_DECLARATION': return LOCAL_FUNCTION_DECLARATION; case 'LOCAL_FUNCTION_REFERENCE': return LOCAL_FUNCTION_REFERENCE; case 'LOCAL_FUNCTION_TEAR_OFF': return LOCAL_FUNCTION_TEAR_OFF; case 'LOCAL_VARIABLE': return LOCAL_VARIABLE; case 'LOCAL_VARIABLE_DECLARATION': return LOCAL_VARIABLE_DECLARATION; case 'LOCAL_VARIABLE_REFERENCE': return LOCAL_VARIABLE_REFERENCE; case 'METHOD': return METHOD; case 'METHOD_DECLARATION': return METHOD_DECLARATION; case 'METHOD_DECLARATION_STATIC': return METHOD_DECLARATION_STATIC; case 'METHOD_STATIC': return METHOD_STATIC; case 'PARAMETER': return PARAMETER; case 'SETTER_DECLARATION': return SETTER_DECLARATION; case 'TOP_LEVEL_VARIABLE': return TOP_LEVEL_VARIABLE; case 'PARAMETER_DECLARATION': return PARAMETER_DECLARATION; case 'PARAMETER_REFERENCE': return PARAMETER_REFERENCE; case 'STATIC_FIELD_DECLARATION': return STATIC_FIELD_DECLARATION; case 'STATIC_GETTER_DECLARATION': return STATIC_GETTER_DECLARATION; case 'STATIC_GETTER_REFERENCE': return STATIC_GETTER_REFERENCE; case 'STATIC_METHOD_DECLARATION': return STATIC_METHOD_DECLARATION; case 'STATIC_METHOD_REFERENCE': return STATIC_METHOD_REFERENCE; case 'STATIC_METHOD_TEAR_OFF': return STATIC_METHOD_TEAR_OFF; case 'STATIC_SETTER_DECLARATION': return STATIC_SETTER_DECLARATION; case 'STATIC_SETTER_REFERENCE': return STATIC_SETTER_REFERENCE; case 'TOP_LEVEL_FUNCTION_DECLARATION': return TOP_LEVEL_FUNCTION_DECLARATION; case 'TOP_LEVEL_FUNCTION_REFERENCE': return TOP_LEVEL_FUNCTION_REFERENCE; case 'TOP_LEVEL_FUNCTION_TEAR_OFF': return TOP_LEVEL_FUNCTION_TEAR_OFF; case 'TOP_LEVEL_GETTER_DECLARATION': return TOP_LEVEL_GETTER_DECLARATION; case 'TOP_LEVEL_GETTER_REFERENCE': return TOP_LEVEL_GETTER_REFERENCE; case 'TOP_LEVEL_SETTER_DECLARATION': return TOP_LEVEL_SETTER_DECLARATION; case 'TOP_LEVEL_SETTER_REFERENCE': return TOP_LEVEL_SETTER_REFERENCE; case 'TOP_LEVEL_VARIABLE_DECLARATION': return TOP_LEVEL_VARIABLE_DECLARATION; case 'TYPE_ALIAS': return TYPE_ALIAS; case 'TYPE_NAME_DYNAMIC': return TYPE_NAME_DYNAMIC; case 'TYPE_PARAMETER': return TYPE_PARAMETER; case 'UNRESOLVED_INSTANCE_MEMBER_REFERENCE': return UNRESOLVED_INSTANCE_MEMBER_REFERENCE; case 'VALID_STRING_ESCAPE': return VALID_STRING_ESCAPE; } throw Exception('Illegal enum value: $name'); } factory HighlightRegionType.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return HighlightRegionType(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'HighlightRegionType', json); } @override String toString() => 'HighlightRegionType.$name'; String toJson() => name; } /// KytheEntry /// /// { /// "source": KytheVName /// "kind": optional String /// "target": optional KytheVName /// "fact": String /// "value": optional List /// } /// /// Clients may not extend, implement or mix-in this class. class KytheEntry implements HasToJson { /// The ticket of the source node. KytheVName source; /// An edge label. The schema defines which labels are meaningful. String? kind; /// The ticket of the target node. KytheVName? target; /// A fact label. The schema defines which fact labels are meaningful. String fact; /// The String value of the fact. List? value; KytheEntry(this.source, this.fact, {this.kind, this.target, this.value}); factory KytheEntry.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { KytheVName source; if (json.containsKey('source')) { source = KytheVName.fromJson( jsonDecoder, '$jsonPath.source', json['source']); } else { throw jsonDecoder.mismatch(jsonPath, 'source'); } String? kind; if (json.containsKey('kind')) { kind = jsonDecoder.decodeString('$jsonPath.kind', json['kind']); } KytheVName? target; if (json.containsKey('target')) { target = KytheVName.fromJson( jsonDecoder, '$jsonPath.target', json['target']); } String fact; if (json.containsKey('fact')) { fact = jsonDecoder.decodeString('$jsonPath.fact', json['fact']); } else { throw jsonDecoder.mismatch(jsonPath, 'fact'); } List? value; if (json.containsKey('value')) { value = jsonDecoder.decodeList( '$jsonPath.value', json['value'], jsonDecoder.decodeInt); } return KytheEntry(source, fact, kind: kind, target: target, value: value); } else { throw jsonDecoder.mismatch(jsonPath, 'KytheEntry', json); } } @override Map toJson() { var result = {}; result['source'] = source.toJson(); var kind = this.kind; if (kind != null) { result['kind'] = kind; } var target = this.target; if (target != null) { result['target'] = target.toJson(); } result['fact'] = fact; var value = this.value; if (value != null) { result['value'] = value; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is KytheEntry) { return source == other.source && kind == other.kind && target == other.target && fact == other.fact && listEqual(value, other.value, (int a, int b) => a == b); } return false; } @override int get hashCode => Object.hash( source, kind, target, fact, Object.hashAll(value ?? []), ); } /// KytheVName /// /// { /// "signature": String /// "corpus": String /// "root": String /// "path": String /// "language": String /// } /// /// Clients may not extend, implement or mix-in this class. class KytheVName implements HasToJson { /// An opaque signature generated by the analyzer. String signature; /// The corpus of source code this KytheVName belongs to. Loosely, a corpus /// is a collection of related files, such as the contents of a given source /// repository. String corpus; /// A corpus-specific root label, typically a directory path or project /// identifier, denoting a distinct subset of the corpus. This may also be /// used to designate virtual collections like generated files. String root; /// A path-structured label describing the “location” of the named object /// relative to the corpus and the root. String path; /// The language this name belongs to. String language; KytheVName(this.signature, this.corpus, this.root, this.path, this.language); factory KytheVName.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String signature; if (json.containsKey('signature')) { signature = jsonDecoder.decodeString('$jsonPath.signature', json['signature']); } else { throw jsonDecoder.mismatch(jsonPath, 'signature'); } String corpus; if (json.containsKey('corpus')) { corpus = jsonDecoder.decodeString('$jsonPath.corpus', json['corpus']); } else { throw jsonDecoder.mismatch(jsonPath, 'corpus'); } String root; if (json.containsKey('root')) { root = jsonDecoder.decodeString('$jsonPath.root', json['root']); } else { throw jsonDecoder.mismatch(jsonPath, 'root'); } String path; if (json.containsKey('path')) { path = jsonDecoder.decodeString('$jsonPath.path', json['path']); } else { throw jsonDecoder.mismatch(jsonPath, 'path'); } String language; if (json.containsKey('language')) { language = jsonDecoder.decodeString('$jsonPath.language', json['language']); } else { throw jsonDecoder.mismatch(jsonPath, 'language'); } return KytheVName(signature, corpus, root, path, language); } else { throw jsonDecoder.mismatch(jsonPath, 'KytheVName', json); } } @override Map toJson() { var result = {}; result['signature'] = signature; result['corpus'] = corpus; result['root'] = root; result['path'] = path; result['language'] = language; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is KytheVName) { return signature == other.signature && corpus == other.corpus && root == other.root && path == other.path && language == other.language; } return false; } @override int get hashCode => Object.hash( signature, corpus, root, path, language, ); } /// LinkedEditGroup /// /// { /// "positions": List /// "length": int /// "suggestions": List /// } /// /// Clients may not extend, implement or mix-in this class. class LinkedEditGroup implements HasToJson { /// The positions of the regions (after applying the relevant edits) that /// should be edited simultaneously. List positions; /// The length of the regions that should be edited simultaneously. int length; /// Pre-computed suggestions for what every region might want to be changed /// to. List suggestions; LinkedEditGroup(this.positions, this.length, this.suggestions); factory LinkedEditGroup.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { List positions; if (json.containsKey('positions')) { positions = jsonDecoder.decodeList( '$jsonPath.positions', json['positions'], (String jsonPath, Object? json) => Position.fromJson(jsonDecoder, jsonPath, json)); } else { throw jsonDecoder.mismatch(jsonPath, 'positions'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } List suggestions; if (json.containsKey('suggestions')) { suggestions = jsonDecoder.decodeList( '$jsonPath.suggestions', json['suggestions'], (String jsonPath, Object? json) => LinkedEditSuggestion.fromJson(jsonDecoder, jsonPath, json)); } else { throw jsonDecoder.mismatch(jsonPath, 'suggestions'); } return LinkedEditGroup(positions, length, suggestions); } else { throw jsonDecoder.mismatch(jsonPath, 'LinkedEditGroup', json); } } /// Construct an empty LinkedEditGroup. LinkedEditGroup.empty() : this([], 0, []); @override Map toJson() { var result = {}; result['positions'] = positions.map((Position value) => value.toJson()).toList(); result['length'] = length; result['suggestions'] = suggestions .map((LinkedEditSuggestion value) => value.toJson()) .toList(); return result; } /// Add a new position and change the length. void addPosition(Position position, int length) { positions.add(position); this.length = length; } /// Add a new suggestion. void addSuggestion(LinkedEditSuggestion suggestion) { suggestions.add(suggestion); } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is LinkedEditGroup) { return listEqual( positions, other.positions, (Position a, Position b) => a == b) && length == other.length && listEqual(suggestions, other.suggestions, (LinkedEditSuggestion a, LinkedEditSuggestion b) => a == b); } return false; } @override int get hashCode => Object.hash( Object.hashAll(positions), length, Object.hashAll(suggestions), ); } /// LinkedEditSuggestion /// /// { /// "value": String /// "kind": LinkedEditSuggestionKind /// } /// /// Clients may not extend, implement or mix-in this class. class LinkedEditSuggestion implements HasToJson { /// The value that could be used to replace all of the linked edit regions. String value; /// The kind of value being proposed. LinkedEditSuggestionKind kind; LinkedEditSuggestion(this.value, this.kind); factory LinkedEditSuggestion.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String value; if (json.containsKey('value')) { value = jsonDecoder.decodeString('$jsonPath.value', json['value']); } else { throw jsonDecoder.mismatch(jsonPath, 'value'); } LinkedEditSuggestionKind kind; if (json.containsKey('kind')) { kind = LinkedEditSuggestionKind.fromJson( jsonDecoder, '$jsonPath.kind', json['kind']); } else { throw jsonDecoder.mismatch(jsonPath, 'kind'); } return LinkedEditSuggestion(value, kind); } else { throw jsonDecoder.mismatch(jsonPath, 'LinkedEditSuggestion', json); } } @override Map toJson() { var result = {}; result['value'] = value; result['kind'] = kind.toJson(); return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is LinkedEditSuggestion) { return value == other.value && kind == other.kind; } return false; } @override int get hashCode => Object.hash( value, kind, ); } /// LinkedEditSuggestionKind /// /// enum { /// METHOD /// PARAMETER /// TYPE /// VARIABLE /// } /// /// Clients may not extend, implement or mix-in this class. class LinkedEditSuggestionKind implements Enum { static const LinkedEditSuggestionKind METHOD = LinkedEditSuggestionKind._('METHOD'); static const LinkedEditSuggestionKind PARAMETER = LinkedEditSuggestionKind._('PARAMETER'); static const LinkedEditSuggestionKind TYPE = LinkedEditSuggestionKind._('TYPE'); static const LinkedEditSuggestionKind VARIABLE = LinkedEditSuggestionKind._('VARIABLE'); /// A list containing all of the enum values that are defined. static const List VALUES = [METHOD, PARAMETER, TYPE, VARIABLE]; @override final String name; const LinkedEditSuggestionKind._(this.name); factory LinkedEditSuggestionKind(String name) { switch (name) { case 'METHOD': return METHOD; case 'PARAMETER': return PARAMETER; case 'TYPE': return TYPE; case 'VARIABLE': return VARIABLE; } throw Exception('Illegal enum value: $name'); } factory LinkedEditSuggestionKind.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return LinkedEditSuggestionKind(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'LinkedEditSuggestionKind', json); } @override String toString() => 'LinkedEditSuggestionKind.$name'; String toJson() => name; } /// Location /// /// { /// "file": FilePath /// "offset": int /// "length": int /// "startLine": int /// "startColumn": int /// "endLine": optional int /// "endColumn": optional int /// } /// /// Clients may not extend, implement or mix-in this class. class Location implements HasToJson { /// The file containing the range. String file; /// The offset of the range. int offset; /// The length of the range. int length; /// The one-based index of the line containing the first character of the /// range. int startLine; /// The one-based index of the column containing the first character of the /// range. int startColumn; /// The one-based index of the line containing the character immediately /// following the range. int? endLine; /// The one-based index of the column containing the character immediately /// following the range. int? endColumn; Location( this.file, this.offset, this.length, this.startLine, this.startColumn, {this.endLine, this.endColumn}); factory Location.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String file; if (json.containsKey('file')) { file = jsonDecoder.decodeString('$jsonPath.file', json['file']); } else { throw jsonDecoder.mismatch(jsonPath, 'file'); } int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } int startLine; if (json.containsKey('startLine')) { startLine = jsonDecoder.decodeInt('$jsonPath.startLine', json['startLine']); } else { throw jsonDecoder.mismatch(jsonPath, 'startLine'); } int startColumn; if (json.containsKey('startColumn')) { startColumn = jsonDecoder.decodeInt('$jsonPath.startColumn', json['startColumn']); } else { throw jsonDecoder.mismatch(jsonPath, 'startColumn'); } int? endLine; if (json.containsKey('endLine')) { endLine = jsonDecoder.decodeInt('$jsonPath.endLine', json['endLine']); } int? endColumn; if (json.containsKey('endColumn')) { endColumn = jsonDecoder.decodeInt('$jsonPath.endColumn', json['endColumn']); } return Location(file, offset, length, startLine, startColumn, endLine: endLine, endColumn: endColumn); } else { throw jsonDecoder.mismatch(jsonPath, 'Location', json); } } @override Map toJson() { var result = {}; result['file'] = file; result['offset'] = offset; result['length'] = length; result['startLine'] = startLine; result['startColumn'] = startColumn; var endLine = this.endLine; if (endLine != null) { result['endLine'] = endLine; } var endColumn = this.endColumn; if (endColumn != null) { result['endColumn'] = endColumn; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is Location) { return file == other.file && offset == other.offset && length == other.length && startLine == other.startLine && startColumn == other.startColumn && endLine == other.endLine && endColumn == other.endColumn; } return false; } @override int get hashCode => Object.hash( file, offset, length, startLine, startColumn, endLine, endColumn, ); } /// NavigationRegion /// /// { /// "offset": int /// "length": int /// "targets": List /// } /// /// Clients may not extend, implement or mix-in this class. class NavigationRegion implements HasToJson { /// The offset of the region from which the user can navigate. int offset; /// The length of the region from which the user can navigate. int length; /// The indexes of the targets (in the enclosing navigation response) to /// which the given region is bound. By opening the target, clients can /// implement one form of navigation. This list cannot be empty. List targets; NavigationRegion(this.offset, this.length, this.targets); factory NavigationRegion.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } List targets; if (json.containsKey('targets')) { targets = jsonDecoder.decodeList( '$jsonPath.targets', json['targets'], jsonDecoder.decodeInt); } else { throw jsonDecoder.mismatch(jsonPath, 'targets'); } return NavigationRegion(offset, length, targets); } else { throw jsonDecoder.mismatch(jsonPath, 'NavigationRegion', json); } } @override Map toJson() { var result = {}; result['offset'] = offset; result['length'] = length; result['targets'] = targets; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is NavigationRegion) { return offset == other.offset && length == other.length && listEqual(targets, other.targets, (int a, int b) => a == b); } return false; } @override int get hashCode => Object.hash( offset, length, Object.hashAll(targets), ); } /// NavigationTarget /// /// { /// "kind": ElementKind /// "fileIndex": int /// "offset": int /// "length": int /// "startLine": int /// "startColumn": int /// "codeOffset": optional int /// "codeLength": optional int /// } /// /// Clients may not extend, implement or mix-in this class. class NavigationTarget implements HasToJson { /// The kind of the element. ElementKind kind; /// The index of the file (in the enclosing navigation response) to navigate /// to. int fileIndex; /// The offset of the name of the target to which the user can navigate. int offset; /// The length of the name of the target to which the user can navigate. int length; /// The one-based index of the line containing the first character of the /// name of the target. int startLine; /// The one-based index of the column containing the first character of the /// name of the target. int startColumn; /// The offset of the target code to which the user can navigate. int? codeOffset; /// The length of the target code to which the user can navigate. int? codeLength; NavigationTarget(this.kind, this.fileIndex, this.offset, this.length, this.startLine, this.startColumn, {this.codeOffset, this.codeLength}); factory NavigationTarget.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { ElementKind kind; if (json.containsKey('kind')) { kind = ElementKind.fromJson(jsonDecoder, '$jsonPath.kind', json['kind']); } else { throw jsonDecoder.mismatch(jsonPath, 'kind'); } int fileIndex; if (json.containsKey('fileIndex')) { fileIndex = jsonDecoder.decodeInt('$jsonPath.fileIndex', json['fileIndex']); } else { throw jsonDecoder.mismatch(jsonPath, 'fileIndex'); } int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } int startLine; if (json.containsKey('startLine')) { startLine = jsonDecoder.decodeInt('$jsonPath.startLine', json['startLine']); } else { throw jsonDecoder.mismatch(jsonPath, 'startLine'); } int startColumn; if (json.containsKey('startColumn')) { startColumn = jsonDecoder.decodeInt('$jsonPath.startColumn', json['startColumn']); } else { throw jsonDecoder.mismatch(jsonPath, 'startColumn'); } int? codeOffset; if (json.containsKey('codeOffset')) { codeOffset = jsonDecoder.decodeInt('$jsonPath.codeOffset', json['codeOffset']); } int? codeLength; if (json.containsKey('codeLength')) { codeLength = jsonDecoder.decodeInt('$jsonPath.codeLength', json['codeLength']); } return NavigationTarget( kind, fileIndex, offset, length, startLine, startColumn, codeOffset: codeOffset, codeLength: codeLength); } else { throw jsonDecoder.mismatch(jsonPath, 'NavigationTarget', json); } } @override Map toJson() { var result = {}; result['kind'] = kind.toJson(); result['fileIndex'] = fileIndex; result['offset'] = offset; result['length'] = length; result['startLine'] = startLine; result['startColumn'] = startColumn; var codeOffset = this.codeOffset; if (codeOffset != null) { result['codeOffset'] = codeOffset; } var codeLength = this.codeLength; if (codeLength != null) { result['codeLength'] = codeLength; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is NavigationTarget) { return kind == other.kind && fileIndex == other.fileIndex && offset == other.offset && length == other.length && startLine == other.startLine && startColumn == other.startColumn && codeOffset == other.codeOffset && codeLength == other.codeLength; } return false; } @override int get hashCode => Object.hash( kind, fileIndex, offset, length, startLine, startColumn, codeOffset, codeLength, ); } /// Occurrences /// /// { /// "element": Element /// "offsets": List /// "length": int /// } /// /// Clients may not extend, implement or mix-in this class. class Occurrences implements HasToJson { /// The element that was referenced. Element element; /// The offsets of the name of the referenced element within the file. List offsets; /// The length of the name of the referenced element. int length; Occurrences(this.element, this.offsets, this.length); factory Occurrences.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { Element element; if (json.containsKey('element')) { element = Element.fromJson(jsonDecoder, '$jsonPath.element', json['element']); } else { throw jsonDecoder.mismatch(jsonPath, 'element'); } List offsets; if (json.containsKey('offsets')) { offsets = jsonDecoder.decodeList( '$jsonPath.offsets', json['offsets'], jsonDecoder.decodeInt); } else { throw jsonDecoder.mismatch(jsonPath, 'offsets'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } return Occurrences(element, offsets, length); } else { throw jsonDecoder.mismatch(jsonPath, 'Occurrences', json); } } @override Map toJson() { var result = {}; result['element'] = element.toJson(); result['offsets'] = offsets; result['length'] = length; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is Occurrences) { return element == other.element && listEqual(offsets, other.offsets, (int a, int b) => a == b) && length == other.length; } return false; } @override int get hashCode => Object.hash( element, Object.hashAll(offsets), length, ); } /// Outline /// /// { /// "element": Element /// "offset": int /// "length": int /// "codeOffset": int /// "codeLength": int /// "children": optional List /// } /// /// Clients may not extend, implement or mix-in this class. class Outline implements HasToJson { /// A description of the element represented by this node. Element element; /// The offset of the first character of the element. This is different than /// the offset in the Element, which is the offset of the name of the /// element. It can be used, for example, to map locations in the file back /// to an outline. int offset; /// The length of the element. int length; /// The offset of the first character of the element code, which is neither /// documentation, nor annotation. int codeOffset; /// The length of the element code. int codeLength; /// The children of the node. The field will be omitted if the node has no /// children. Children are sorted by offset. List? children; Outline( this.element, this.offset, this.length, this.codeOffset, this.codeLength, {this.children}); factory Outline.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { Element element; if (json.containsKey('element')) { element = Element.fromJson(jsonDecoder, '$jsonPath.element', json['element']); } else { throw jsonDecoder.mismatch(jsonPath, 'element'); } int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } int codeOffset; if (json.containsKey('codeOffset')) { codeOffset = jsonDecoder.decodeInt('$jsonPath.codeOffset', json['codeOffset']); } else { throw jsonDecoder.mismatch(jsonPath, 'codeOffset'); } int codeLength; if (json.containsKey('codeLength')) { codeLength = jsonDecoder.decodeInt('$jsonPath.codeLength', json['codeLength']); } else { throw jsonDecoder.mismatch(jsonPath, 'codeLength'); } List? children; if (json.containsKey('children')) { children = jsonDecoder.decodeList( '$jsonPath.children', json['children'], (String jsonPath, Object? json) => Outline.fromJson(jsonDecoder, jsonPath, json)); } return Outline(element, offset, length, codeOffset, codeLength, children: children); } else { throw jsonDecoder.mismatch(jsonPath, 'Outline', json); } } @override Map toJson() { var result = {}; result['element'] = element.toJson(); result['offset'] = offset; result['length'] = length; result['codeOffset'] = codeOffset; result['codeLength'] = codeLength; var children = this.children; if (children != null) { result['children'] = children.map((Outline value) => value.toJson()).toList(); } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is Outline) { return element == other.element && offset == other.offset && length == other.length && codeOffset == other.codeOffset && codeLength == other.codeLength && listEqual(children, other.children, (Outline a, Outline b) => a == b); } return false; } @override int get hashCode => Object.hash( element, offset, length, codeOffset, codeLength, Object.hashAll(children ?? []), ); } /// ParameterInfo /// /// { /// "kind": ParameterKind /// "name": String /// "type": String /// "defaultValue": optional String /// } /// /// Clients may not extend, implement or mix-in this class. class ParameterInfo implements HasToJson { /// The kind of the parameter. ParameterKind kind; /// The name of the parameter. String name; /// The type of the parameter. String type; /// The default value for this parameter. This value will be omitted if the /// parameter does not have a default value. String? defaultValue; ParameterInfo(this.kind, this.name, this.type, {this.defaultValue}); factory ParameterInfo.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { ParameterKind kind; if (json.containsKey('kind')) { kind = ParameterKind.fromJson(jsonDecoder, '$jsonPath.kind', json['kind']); } else { throw jsonDecoder.mismatch(jsonPath, 'kind'); } String name; if (json.containsKey('name')) { name = jsonDecoder.decodeString('$jsonPath.name', json['name']); } else { throw jsonDecoder.mismatch(jsonPath, 'name'); } String type; if (json.containsKey('type')) { type = jsonDecoder.decodeString('$jsonPath.type', json['type']); } else { throw jsonDecoder.mismatch(jsonPath, 'type'); } String? defaultValue; if (json.containsKey('defaultValue')) { defaultValue = jsonDecoder.decodeString( '$jsonPath.defaultValue', json['defaultValue']); } return ParameterInfo(kind, name, type, defaultValue: defaultValue); } else { throw jsonDecoder.mismatch(jsonPath, 'ParameterInfo', json); } } @override Map toJson() { var result = {}; result['kind'] = kind.toJson(); result['name'] = name; result['type'] = type; var defaultValue = this.defaultValue; if (defaultValue != null) { result['defaultValue'] = defaultValue; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is ParameterInfo) { return kind == other.kind && name == other.name && type == other.type && defaultValue == other.defaultValue; } return false; } @override int get hashCode => Object.hash( kind, name, type, defaultValue, ); } /// ParameterKind /// /// enum { /// OPTIONAL_NAMED /// OPTIONAL_POSITIONAL /// REQUIRED_NAMED /// REQUIRED_POSITIONAL /// } /// /// Clients may not extend, implement or mix-in this class. class ParameterKind implements Enum { /// An optional named parameter. static const ParameterKind OPTIONAL_NAMED = ParameterKind._('OPTIONAL_NAMED'); /// An optional positional parameter. static const ParameterKind OPTIONAL_POSITIONAL = ParameterKind._('OPTIONAL_POSITIONAL'); /// A required named parameter. static const ParameterKind REQUIRED_NAMED = ParameterKind._('REQUIRED_NAMED'); /// A required positional parameter. static const ParameterKind REQUIRED_POSITIONAL = ParameterKind._('REQUIRED_POSITIONAL'); /// A list containing all of the enum values that are defined. static const List VALUES = [ OPTIONAL_NAMED, OPTIONAL_POSITIONAL, REQUIRED_NAMED, REQUIRED_POSITIONAL ]; @override final String name; const ParameterKind._(this.name); factory ParameterKind(String name) { switch (name) { case 'OPTIONAL_NAMED': return OPTIONAL_NAMED; case 'OPTIONAL_POSITIONAL': return OPTIONAL_POSITIONAL; case 'REQUIRED_NAMED': return REQUIRED_NAMED; case 'REQUIRED_POSITIONAL': return REQUIRED_POSITIONAL; } throw Exception('Illegal enum value: $name'); } factory ParameterKind.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return ParameterKind(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'ParameterKind', json); } @override String toString() => 'ParameterKind.$name'; String toJson() => name; } /// Position /// /// { /// "file": FilePath /// "offset": int /// } /// /// Clients may not extend, implement or mix-in this class. class Position implements HasToJson { /// The file containing the position. String file; /// The offset of the position. int offset; Position(this.file, this.offset); factory Position.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String file; if (json.containsKey('file')) { file = jsonDecoder.decodeString('$jsonPath.file', json['file']); } else { throw jsonDecoder.mismatch(jsonPath, 'file'); } int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } return Position(file, offset); } else { throw jsonDecoder.mismatch(jsonPath, 'Position', json); } } @override Map toJson() { var result = {}; result['file'] = file; result['offset'] = offset; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is Position) { return file == other.file && offset == other.offset; } return false; } @override int get hashCode => Object.hash( file, offset, ); } /// RefactoringKind /// /// enum { /// CONVERT_GETTER_TO_METHOD /// CONVERT_METHOD_TO_GETTER /// EXTRACT_LOCAL_VARIABLE /// EXTRACT_METHOD /// EXTRACT_WIDGET /// INLINE_LOCAL_VARIABLE /// INLINE_METHOD /// MOVE_FILE /// RENAME /// } /// /// Clients may not extend, implement or mix-in this class. class RefactoringKind implements Enum { static const RefactoringKind CONVERT_GETTER_TO_METHOD = RefactoringKind._('CONVERT_GETTER_TO_METHOD'); static const RefactoringKind CONVERT_METHOD_TO_GETTER = RefactoringKind._('CONVERT_METHOD_TO_GETTER'); static const RefactoringKind EXTRACT_LOCAL_VARIABLE = RefactoringKind._('EXTRACT_LOCAL_VARIABLE'); static const RefactoringKind EXTRACT_METHOD = RefactoringKind._('EXTRACT_METHOD'); static const RefactoringKind EXTRACT_WIDGET = RefactoringKind._('EXTRACT_WIDGET'); static const RefactoringKind INLINE_LOCAL_VARIABLE = RefactoringKind._('INLINE_LOCAL_VARIABLE'); static const RefactoringKind INLINE_METHOD = RefactoringKind._('INLINE_METHOD'); static const RefactoringKind MOVE_FILE = RefactoringKind._('MOVE_FILE'); static const RefactoringKind RENAME = RefactoringKind._('RENAME'); /// A list containing all of the enum values that are defined. static const List VALUES = [ CONVERT_GETTER_TO_METHOD, CONVERT_METHOD_TO_GETTER, EXTRACT_LOCAL_VARIABLE, EXTRACT_METHOD, EXTRACT_WIDGET, INLINE_LOCAL_VARIABLE, INLINE_METHOD, MOVE_FILE, RENAME ]; @override final String name; const RefactoringKind._(this.name); factory RefactoringKind(String name) { switch (name) { case 'CONVERT_GETTER_TO_METHOD': return CONVERT_GETTER_TO_METHOD; case 'CONVERT_METHOD_TO_GETTER': return CONVERT_METHOD_TO_GETTER; case 'EXTRACT_LOCAL_VARIABLE': return EXTRACT_LOCAL_VARIABLE; case 'EXTRACT_METHOD': return EXTRACT_METHOD; case 'EXTRACT_WIDGET': return EXTRACT_WIDGET; case 'INLINE_LOCAL_VARIABLE': return INLINE_LOCAL_VARIABLE; case 'INLINE_METHOD': return INLINE_METHOD; case 'MOVE_FILE': return MOVE_FILE; case 'RENAME': return RENAME; } throw Exception('Illegal enum value: $name'); } factory RefactoringKind.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return RefactoringKind(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'RefactoringKind', json); } @override String toString() => 'RefactoringKind.$name'; String toJson() => name; } /// RefactoringMethodParameter /// /// { /// "id": optional String /// "kind": RefactoringMethodParameterKind /// "type": String /// "name": String /// "parameters": optional String /// } /// /// Clients may not extend, implement or mix-in this class. class RefactoringMethodParameter implements HasToJson { /// The unique identifier of the parameter. Clients may omit this field for /// the parameters they want to add. String? id; /// The kind of the parameter. RefactoringMethodParameterKind kind; /// The type that should be given to the parameter, or the return type of the /// parameter's function type. String type; /// The name that should be given to the parameter. String name; /// The parameter list of the parameter's function type. If the parameter is /// not of a function type, this field will not be defined. If the function /// type has zero parameters, this field will have a value of '()'. String? parameters; RefactoringMethodParameter(this.kind, this.type, this.name, {this.id, this.parameters}); factory RefactoringMethodParameter.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String? id; if (json.containsKey('id')) { id = jsonDecoder.decodeString('$jsonPath.id', json['id']); } RefactoringMethodParameterKind kind; if (json.containsKey('kind')) { kind = RefactoringMethodParameterKind.fromJson( jsonDecoder, '$jsonPath.kind', json['kind']); } else { throw jsonDecoder.mismatch(jsonPath, 'kind'); } String type; if (json.containsKey('type')) { type = jsonDecoder.decodeString('$jsonPath.type', json['type']); } else { throw jsonDecoder.mismatch(jsonPath, 'type'); } String name; if (json.containsKey('name')) { name = jsonDecoder.decodeString('$jsonPath.name', json['name']); } else { throw jsonDecoder.mismatch(jsonPath, 'name'); } String? parameters; if (json.containsKey('parameters')) { parameters = jsonDecoder.decodeString( '$jsonPath.parameters', json['parameters']); } return RefactoringMethodParameter(kind, type, name, id: id, parameters: parameters); } else { throw jsonDecoder.mismatch(jsonPath, 'RefactoringMethodParameter', json); } } @override Map toJson() { var result = {}; var id = this.id; if (id != null) { result['id'] = id; } result['kind'] = kind.toJson(); result['type'] = type; result['name'] = name; var parameters = this.parameters; if (parameters != null) { result['parameters'] = parameters; } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is RefactoringMethodParameter) { return id == other.id && kind == other.kind && type == other.type && name == other.name && parameters == other.parameters; } return false; } @override int get hashCode => Object.hash( id, kind, type, name, parameters, ); } /// RefactoringMethodParameterKind /// /// enum { /// REQUIRED /// POSITIONAL /// NAMED /// } /// /// Clients may not extend, implement or mix-in this class. class RefactoringMethodParameterKind implements Enum { static const RefactoringMethodParameterKind REQUIRED = RefactoringMethodParameterKind._('REQUIRED'); static const RefactoringMethodParameterKind POSITIONAL = RefactoringMethodParameterKind._('POSITIONAL'); static const RefactoringMethodParameterKind NAMED = RefactoringMethodParameterKind._('NAMED'); /// A list containing all of the enum values that are defined. static const List VALUES = [REQUIRED, POSITIONAL, NAMED]; @override final String name; const RefactoringMethodParameterKind._(this.name); factory RefactoringMethodParameterKind(String name) { switch (name) { case 'REQUIRED': return REQUIRED; case 'POSITIONAL': return POSITIONAL; case 'NAMED': return NAMED; } throw Exception('Illegal enum value: $name'); } factory RefactoringMethodParameterKind.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return RefactoringMethodParameterKind(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch( jsonPath, 'RefactoringMethodParameterKind', json); } @override String toString() => 'RefactoringMethodParameterKind.$name'; String toJson() => name; } /// RefactoringProblem /// /// { /// "severity": RefactoringProblemSeverity /// "message": String /// "location": optional Location /// } /// /// Clients may not extend, implement or mix-in this class. class RefactoringProblem implements HasToJson { /// The severity of the problem being represented. RefactoringProblemSeverity severity; /// A human-readable description of the problem being represented. String message; /// The location of the problem being represented. This field is omitted /// unless there is a specific location associated with the problem (such as /// a location where an element being renamed will be shadowed). Location? location; RefactoringProblem(this.severity, this.message, {this.location}); factory RefactoringProblem.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { RefactoringProblemSeverity severity; if (json.containsKey('severity')) { severity = RefactoringProblemSeverity.fromJson( jsonDecoder, '$jsonPath.severity', json['severity']); } else { throw jsonDecoder.mismatch(jsonPath, 'severity'); } String message; if (json.containsKey('message')) { message = jsonDecoder.decodeString('$jsonPath.message', json['message']); } else { throw jsonDecoder.mismatch(jsonPath, 'message'); } Location? location; if (json.containsKey('location')) { location = Location.fromJson( jsonDecoder, '$jsonPath.location', json['location']); } return RefactoringProblem(severity, message, location: location); } else { throw jsonDecoder.mismatch(jsonPath, 'RefactoringProblem', json); } } @override Map toJson() { var result = {}; result['severity'] = severity.toJson(); result['message'] = message; var location = this.location; if (location != null) { result['location'] = location.toJson(); } return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is RefactoringProblem) { return severity == other.severity && message == other.message && location == other.location; } return false; } @override int get hashCode => Object.hash( severity, message, location, ); } /// RefactoringProblemSeverity /// /// enum { /// INFO /// WARNING /// ERROR /// FATAL /// } /// /// Clients may not extend, implement or mix-in this class. class RefactoringProblemSeverity implements Enum { /// A minor code problem. No example, because it is not used yet. static const RefactoringProblemSeverity INFO = RefactoringProblemSeverity._('INFO'); /// A minor code problem. For example names of local variables should be /// camel case and start with a lower case letter. Staring the name of a /// variable with an upper case is OK from the language point of view, but it /// is nice to warn the user. static const RefactoringProblemSeverity WARNING = RefactoringProblemSeverity._('WARNING'); /// The refactoring technically can be performed, but there is a logical /// problem. For example the name of a local variable being extracted /// conflicts with another name in the scope, or duplicate parameter names in /// the method being extracted, or a conflict between a parameter name and a /// local variable, etc. In some cases the location of the problem is also /// provided, so the IDE can show user the location and the problem, and let /// the user decide whether they want to perform the refactoring. For example /// the name conflict might be expected, and the user wants to fix it /// afterwards. static const RefactoringProblemSeverity ERROR = RefactoringProblemSeverity._('ERROR'); /// A fatal error, which prevents performing the refactoring. For example the /// name of a local variable being extracted is not a valid identifier, or /// selection is not a valid expression. static const RefactoringProblemSeverity FATAL = RefactoringProblemSeverity._('FATAL'); /// A list containing all of the enum values that are defined. static const List VALUES = [INFO, WARNING, ERROR, FATAL]; @override final String name; const RefactoringProblemSeverity._(this.name); factory RefactoringProblemSeverity(String name) { switch (name) { case 'INFO': return INFO; case 'WARNING': return WARNING; case 'ERROR': return ERROR; case 'FATAL': return FATAL; } throw Exception('Illegal enum value: $name'); } factory RefactoringProblemSeverity.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { if (json is String) { try { return RefactoringProblemSeverity(json); } catch (_) { // Fall through } } throw jsonDecoder.mismatch(jsonPath, 'RefactoringProblemSeverity', json); } /// Returns the [RefactoringProblemSeverity] with the maximal severity. static RefactoringProblemSeverity? max( RefactoringProblemSeverity? a, RefactoringProblemSeverity? b) => maxRefactoringProblemSeverity(a, b); @override String toString() => 'RefactoringProblemSeverity.$name'; String toJson() => name; } /// RemoveContentOverlay /// /// { /// "type": "remove" /// } /// /// Clients may not extend, implement or mix-in this class. class RemoveContentOverlay implements HasToJson { RemoveContentOverlay(); factory RemoveContentOverlay.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { if (json['type'] != 'remove') { throw jsonDecoder.mismatch(jsonPath, 'equal remove', json); } return RemoveContentOverlay(); } else { throw jsonDecoder.mismatch(jsonPath, 'RemoveContentOverlay', json); } } @override Map toJson() { var result = {}; result['type'] = 'remove'; return result; } @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is RemoveContentOverlay) { return true; } return false; } @override int get hashCode => 114870849; } /// SourceChange /// /// { /// "message": String /// "edits": List /// "linkedEditGroups": List /// "selection": optional Position /// "selectionLength": optional int /// "id": optional String /// } /// /// Clients may not extend, implement or mix-in this class. class SourceChange implements HasToJson { /// A human-readable description of the change to be applied. String message; /// A list of the edits used to effect the change, grouped by file. List edits; /// A list of the linked editing groups used to customize the changes that /// were made. List linkedEditGroups; /// The position that should be selected after the edits have been applied. Position? selection; /// The length of the selection (starting at Position) that should be /// selected after the edits have been applied. int? selectionLength; /// The optional identifier of the change kind. The identifier remains stable /// even if the message changes, or is parameterized. String? id; SourceChange(this.message, {List? edits, List? linkedEditGroups, this.selection, this.selectionLength, this.id}) : edits = edits ?? [], linkedEditGroups = linkedEditGroups ?? []; factory SourceChange.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String message; if (json.containsKey('message')) { message = jsonDecoder.decodeString('$jsonPath.message', json['message']); } else { throw jsonDecoder.mismatch(jsonPath, 'message'); } List edits; if (json.containsKey('edits')) { edits = jsonDecoder.decodeList( '$jsonPath.edits', json['edits'], (String jsonPath, Object? json) => SourceFileEdit.fromJson(jsonDecoder, jsonPath, json)); } else { throw jsonDecoder.mismatch(jsonPath, 'edits'); } List linkedEditGroups; if (json.containsKey('linkedEditGroups')) { linkedEditGroups = jsonDecoder.decodeList( '$jsonPath.linkedEditGroups', json['linkedEditGroups'], (String jsonPath, Object? json) => LinkedEditGroup.fromJson(jsonDecoder, jsonPath, json)); } else { throw jsonDecoder.mismatch(jsonPath, 'linkedEditGroups'); } Position? selection; if (json.containsKey('selection')) { selection = Position.fromJson( jsonDecoder, '$jsonPath.selection', json['selection']); } int? selectionLength; if (json.containsKey('selectionLength')) { selectionLength = jsonDecoder.decodeInt( '$jsonPath.selectionLength', json['selectionLength']); } String? id; if (json.containsKey('id')) { id = jsonDecoder.decodeString('$jsonPath.id', json['id']); } return SourceChange(message, edits: edits, linkedEditGroups: linkedEditGroups, selection: selection, selectionLength: selectionLength, id: id); } else { throw jsonDecoder.mismatch(jsonPath, 'SourceChange', json); } } @override Map toJson() { var result = {}; result['message'] = message; result['edits'] = edits.map((SourceFileEdit value) => value.toJson()).toList(); result['linkedEditGroups'] = linkedEditGroups .map((LinkedEditGroup value) => value.toJson()) .toList(); var selection = this.selection; if (selection != null) { result['selection'] = selection.toJson(); } var selectionLength = this.selectionLength; if (selectionLength != null) { result['selectionLength'] = selectionLength; } var id = this.id; if (id != null) { result['id'] = id; } return result; } /// Adds [edit] to the [FileEdit] for the given [file]. /// /// If [insertBeforeExisting] is `true`, inserts made at the same offset as /// other edits will be inserted such that they appear before them in the /// resulting document. void addEdit(String file, int fileStamp, SourceEdit edit, {bool insertBeforeExisting = false}) => addEditToSourceChange(this, file, fileStamp, edit, insertBeforeExisting: insertBeforeExisting); /// Adds the given [FileEdit]. void addFileEdit(SourceFileEdit edit) { edits.add(edit); } /// Adds the given [LinkedEditGroup]. void addLinkedEditGroup(LinkedEditGroup linkedEditGroup) { linkedEditGroups.add(linkedEditGroup); } /// Returns the [FileEdit] for the given [file], maybe `null`. SourceFileEdit? getFileEdit(String file) => getChangeFileEdit(this, file); @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is SourceChange) { return message == other.message && listEqual(edits, other.edits, (SourceFileEdit a, SourceFileEdit b) => a == b) && listEqual(linkedEditGroups, other.linkedEditGroups, (LinkedEditGroup a, LinkedEditGroup b) => a == b) && selection == other.selection && selectionLength == other.selectionLength && id == other.id; } return false; } @override int get hashCode => Object.hash( message, Object.hashAll(edits), Object.hashAll(linkedEditGroups), selection, selectionLength, id, ); } /// SourceEdit /// /// { /// "offset": int /// "length": int /// "replacement": String /// "id": optional String /// } /// /// Clients may not extend, implement or mix-in this class. class SourceEdit implements HasToJson { /// Get the result of applying a set of [edits] to the given [code]. Edits /// are applied in the order they appear in [edits]. static String applySequence(String code, Iterable edits) => applySequenceOfEdits(code, edits); /// The offset of the region to be modified. int offset; /// The length of the region to be modified. int length; /// The code that is to replace the specified region in the original code. String replacement; /// An identifier that uniquely identifies this source edit from other edits /// in the same response. This field is omitted unless a containing structure /// needs to be able to identify the edit for some reason. /// /// For example, some refactoring operations can produce edits that might not /// be appropriate (referred to as potential edits). Such edits will have an /// id so that they can be referenced. Edits in the same response that do not /// need to be referenced will not have an id. String? id; SourceEdit(this.offset, this.length, this.replacement, {this.id}); factory SourceEdit.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { int offset; if (json.containsKey('offset')) { offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']); } else { throw jsonDecoder.mismatch(jsonPath, 'offset'); } int length; if (json.containsKey('length')) { length = jsonDecoder.decodeInt('$jsonPath.length', json['length']); } else { throw jsonDecoder.mismatch(jsonPath, 'length'); } String replacement; if (json.containsKey('replacement')) { replacement = jsonDecoder.decodeString( '$jsonPath.replacement', json['replacement']); } else { throw jsonDecoder.mismatch(jsonPath, 'replacement'); } String? id; if (json.containsKey('id')) { id = jsonDecoder.decodeString('$jsonPath.id', json['id']); } return SourceEdit(offset, length, replacement, id: id); } else { throw jsonDecoder.mismatch(jsonPath, 'SourceEdit', json); } } /// The end of the region to be modified. int get end => offset + length; @override Map toJson() { var result = {}; result['offset'] = offset; result['length'] = length; result['replacement'] = replacement; var id = this.id; if (id != null) { result['id'] = id; } return result; } /// Get the result of applying the edit to the given [code]. String apply(String code) => applyEdit(code, this); @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is SourceEdit) { return offset == other.offset && length == other.length && replacement == other.replacement && id == other.id; } return false; } @override int get hashCode => Object.hash( offset, length, replacement, id, ); } /// SourceFileEdit /// /// { /// "file": FilePath /// "fileStamp": long /// "edits": List /// } /// /// Clients may not extend, implement or mix-in this class. class SourceFileEdit implements HasToJson { /// The file containing the code to be modified. String file; /// The modification stamp of the file at the moment when the change was /// created, in milliseconds since the "Unix epoch". Will be -1 if the file /// did not exist and should be created. The client may use this field to /// make sure that the file was not changed since then, so it is safe to /// apply the change. int fileStamp; /// A list of the edits used to effect the change. List edits; SourceFileEdit(this.file, this.fileStamp, {List? edits}) : edits = edits ?? []; factory SourceFileEdit.fromJson( JsonDecoder jsonDecoder, String jsonPath, Object? json) { json ??= {}; if (json is Map) { String file; if (json.containsKey('file')) { file = jsonDecoder.decodeString('$jsonPath.file', json['file']); } else { throw jsonDecoder.mismatch(jsonPath, 'file'); } int fileStamp; if (json.containsKey('fileStamp')) { fileStamp = jsonDecoder.decodeInt('$jsonPath.fileStamp', json['fileStamp']); } else { throw jsonDecoder.mismatch(jsonPath, 'fileStamp'); } List edits; if (json.containsKey('edits')) { edits = jsonDecoder.decodeList( '$jsonPath.edits', json['edits'], (String jsonPath, Object? json) => SourceEdit.fromJson(jsonDecoder, jsonPath, json)); } else { throw jsonDecoder.mismatch(jsonPath, 'edits'); } return SourceFileEdit(file, fileStamp, edits: edits); } else { throw jsonDecoder.mismatch(jsonPath, 'SourceFileEdit', json); } } @override Map toJson() { var result = {}; result['file'] = file; result['fileStamp'] = fileStamp; result['edits'] = edits.map((SourceEdit value) => value.toJson()).toList(); return result; } /// Adds the given [Edit] to the list. /// /// If [insertBeforeExisting] is `true`, inserts made at the same offset as /// other edits will be inserted such that they appear before them in the /// resulting document. void add(SourceEdit edit, {bool insertBeforeExisting = false}) => addEditForSource(this, edit, insertBeforeExisting: insertBeforeExisting); /// Adds the given [Edit]s. /// /// If [insertBeforeExisting] is `true`, inserts made at the same offset as /// other edits will be inserted such that they appear before them in the /// resulting document. void addAll(Iterable edits, {bool insertBeforeExisting = false}) => addAllEditsForSource(this, edits, insertBeforeExisting: insertBeforeExisting); @override String toString() => json.encode(toJson()); @override bool operator ==(other) { if (other is SourceFileEdit) { return file == other.file && fileStamp == other.fileStamp && listEqual(edits, other.edits, (SourceEdit a, SourceEdit b) => a == b); } return false; } @override int get hashCode => Object.hash( file, fileStamp, Object.hashAll(edits), ); }