| // Copyright (c) 2021, 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. |
| |
| // NOTE: THIS FILE IS GENERATED. DO NOT EDIT. |
| // |
| // Instead modify 'pkg/front_end/messages.yaml' and run |
| // 'pkg/front_end/tool/fasta generate-messages' to update. |
| |
| // ignore_for_file: lines_longer_than_80_chars |
| |
| part of fasta.codes; |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateAmbiguousExtensionMethod = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "AmbiguousExtensionMethod", |
| problemMessageTemplate: |
| r"""The method '#name' is defined in multiple extensions for '#type' and neither is more specific.""", |
| correctionMessageTemplate: |
| r"""Try using an explicit extension application of the wanted extension or hiding unwanted extensions from scope.""", |
| withArguments: _withArgumentsAmbiguousExtensionMethod, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeAmbiguousExtensionMethod = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "AmbiguousExtensionMethod", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsAmbiguousExtensionMethod( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeAmbiguousExtensionMethod, |
| problemMessage: |
| """The method '${name}' is defined in multiple extensions for '${type}' and neither is more specific.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try using an explicit extension application of the wanted extension or hiding unwanted extensions from scope.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateAmbiguousExtensionOperator = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "AmbiguousExtensionOperator", |
| problemMessageTemplate: |
| r"""The operator '#name' is defined in multiple extensions for '#type' and neither is more specific.""", |
| correctionMessageTemplate: |
| r"""Try using an explicit extension application of the wanted extension or hiding unwanted extensions from scope.""", |
| withArguments: _withArgumentsAmbiguousExtensionOperator, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeAmbiguousExtensionOperator = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "AmbiguousExtensionOperator", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsAmbiguousExtensionOperator( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeAmbiguousExtensionOperator, |
| problemMessage: |
| """The operator '${name}' is defined in multiple extensions for '${type}' and neither is more specific.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try using an explicit extension application of the wanted extension or hiding unwanted extensions from scope.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateAmbiguousExtensionProperty = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "AmbiguousExtensionProperty", |
| problemMessageTemplate: |
| r"""The property '#name' is defined in multiple extensions for '#type' and neither is more specific.""", |
| correctionMessageTemplate: |
| r"""Try using an explicit extension application of the wanted extension or hiding unwanted extensions from scope.""", |
| withArguments: _withArgumentsAmbiguousExtensionProperty, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeAmbiguousExtensionProperty = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "AmbiguousExtensionProperty", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsAmbiguousExtensionProperty( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeAmbiguousExtensionProperty, |
| problemMessage: |
| """The property '${name}' is defined in multiple extensions for '${type}' and neither is more specific.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try using an explicit extension application of the wanted extension or hiding unwanted extensions from scope.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)> templateAmbiguousSupertypes = |
| const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)>( |
| "AmbiguousSupertypes", |
| problemMessageTemplate: |
| r"""'#name' can't implement both '#type' and '#type2'""", |
| withArguments: _withArgumentsAmbiguousSupertypes, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)> codeAmbiguousSupertypes = const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)>( |
| "AmbiguousSupertypes", |
| analyzerCodes: <String>["AMBIGUOUS_SUPERTYPES"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsAmbiguousSupertypes( |
| String name, DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeAmbiguousSupertypes, |
| problemMessage: |
| """'${name}' can't implement both '${type}' and '${type2}'""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateArgumentTypeNotAssignable = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignable", |
| problemMessageTemplate: |
| r"""The argument type '#type' can't be assigned to the parameter type '#type2'.""", |
| withArguments: _withArgumentsArgumentTypeNotAssignable, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeArgumentTypeNotAssignable = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignable", |
| analyzerCodes: <String>["ARGUMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsArgumentTypeNotAssignable( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeArgumentTypeNotAssignable, |
| problemMessage: |
| """The argument type '${type}' can't be assigned to the parameter type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateArgumentTypeNotAssignableNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignableNullability", |
| problemMessageTemplate: |
| r"""The argument type '#type' can't be assigned to the parameter type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: _withArgumentsArgumentTypeNotAssignableNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeArgumentTypeNotAssignableNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignableNullability", |
| analyzerCodes: <String>["ARGUMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsArgumentTypeNotAssignableNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeArgumentTypeNotAssignableNullability, |
| problemMessage: |
| """The argument type '${type}' can't be assigned to the parameter type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateArgumentTypeNotAssignableNullabilityNull = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignableNullabilityNull", |
| problemMessageTemplate: |
| r"""The value 'null' can't be assigned to the parameter type '#type' because '#type' is not nullable.""", |
| withArguments: _withArgumentsArgumentTypeNotAssignableNullabilityNull, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeArgumentTypeNotAssignableNullabilityNull = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignableNullabilityNull", |
| analyzerCodes: <String>["ARGUMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsArgumentTypeNotAssignableNullabilityNull( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeArgumentTypeNotAssignableNullabilityNull, |
| problemMessage: |
| """The value 'null' can't be assigned to the parameter type '${type}' because '${type}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateArgumentTypeNotAssignableNullabilityNullType = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignableNullabilityNullType", |
| problemMessageTemplate: |
| r"""The argument type '#type' can't be assigned to the parameter type '#type2' because '#type2' is not nullable.""", |
| withArguments: _withArgumentsArgumentTypeNotAssignableNullabilityNullType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeArgumentTypeNotAssignableNullabilityNullType = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignableNullabilityNullType", |
| analyzerCodes: <String>["ARGUMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsArgumentTypeNotAssignableNullabilityNullType( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeArgumentTypeNotAssignableNullabilityNullType, |
| problemMessage: |
| """The argument type '${type}' can't be assigned to the parameter type '${type2}' because '${type2}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateArgumentTypeNotAssignablePartNullability = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignablePartNullability", |
| problemMessageTemplate: |
| r"""The argument type '#type' can't be assigned to the parameter type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: _withArgumentsArgumentTypeNotAssignablePartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeArgumentTypeNotAssignablePartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "ArgumentTypeNotAssignablePartNullability", |
| analyzerCodes: <String>["ARGUMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsArgumentTypeNotAssignablePartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeArgumentTypeNotAssignablePartNullability, |
| problemMessage: |
| """The argument type '${type}' can't be assigned to the parameter type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalCaseImplementsEqual = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalCaseImplementsEqual", |
| problemMessageTemplate: |
| r"""Case expression '#constant' does not have a primitive operator '=='.""", |
| withArguments: _withArgumentsConstEvalCaseImplementsEqual, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalCaseImplementsEqual = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalCaseImplementsEqual", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalCaseImplementsEqual( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalCaseImplementsEqual, |
| problemMessage: |
| """Case expression '${constant}' does not have a primitive operator '=='.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalDuplicateElement = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalDuplicateElement", |
| problemMessageTemplate: |
| r"""The element '#constant' conflicts with another existing element in the set.""", |
| withArguments: _withArgumentsConstEvalDuplicateElement, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalDuplicateElement = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalDuplicateElement", |
| analyzerCodes: <String>["EQUAL_ELEMENTS_IN_CONST_SET"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalDuplicateElement( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalDuplicateElement, |
| problemMessage: |
| """The element '${constant}' conflicts with another existing element in the set.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalDuplicateKey = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalDuplicateKey", |
| problemMessageTemplate: |
| r"""The key '#constant' conflicts with another existing key in the map.""", |
| withArguments: _withArgumentsConstEvalDuplicateKey, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalDuplicateKey = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalDuplicateKey", |
| analyzerCodes: <String>["EQUAL_KEYS_IN_CONST_MAP"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalDuplicateKey( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalDuplicateKey, |
| problemMessage: |
| """The key '${constant}' conflicts with another existing key in the map.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalElementImplementsEqual = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalElementImplementsEqual", |
| problemMessageTemplate: |
| r"""The element '#constant' does not have a primitive operator '=='.""", |
| withArguments: _withArgumentsConstEvalElementImplementsEqual, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalElementImplementsEqual = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalElementImplementsEqual", |
| analyzerCodes: <String>["CONST_SET_ELEMENT_TYPE_IMPLEMENTS_EQUALS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalElementImplementsEqual( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalElementImplementsEqual, |
| problemMessage: |
| """The element '${constant}' does not have a primitive operator '=='.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalElementNotPrimitiveEquality = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalElementNotPrimitiveEquality", |
| problemMessageTemplate: |
| r"""The element '#constant' does not have a primitive equality.""", |
| withArguments: _withArgumentsConstEvalElementNotPrimitiveEquality, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalElementNotPrimitiveEquality = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalElementNotPrimitiveEquality", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalElementNotPrimitiveEquality( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalElementNotPrimitiveEquality, |
| problemMessage: |
| """The element '${constant}' does not have a primitive equality.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)> |
| templateConstEvalEqualsOperandNotPrimitiveEquality = const Template< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)>( |
| "ConstEvalEqualsOperandNotPrimitiveEquality", |
| problemMessageTemplate: |
| r"""Binary operator '==' requires receiver constant '#constant' of a type with primitive equality or type 'double', but was of type '#type'.""", |
| withArguments: _withArgumentsConstEvalEqualsOperandNotPrimitiveEquality, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)> |
| codeConstEvalEqualsOperandNotPrimitiveEquality = const Code< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)>( |
| "ConstEvalEqualsOperandNotPrimitiveEquality", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalEqualsOperandNotPrimitiveEquality( |
| Constant _constant, DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| List<Object> typeParts = labeler.labelType(_type); |
| String constant = constantParts.join(); |
| String type = typeParts.join(); |
| return new Message( |
| codeConstEvalEqualsOperandNotPrimitiveEquality, |
| problemMessage: |
| """Binary operator '==' requires receiver constant '${constant}' of a type with primitive equality or type 'double', but was of type '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateConstEvalFreeTypeParameter = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ConstEvalFreeTypeParameter", |
| problemMessageTemplate: |
| r"""The type '#type' is not a constant because it depends on a type parameter, only instantiated types are allowed.""", |
| withArguments: _withArgumentsConstEvalFreeTypeParameter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeConstEvalFreeTypeParameter = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ConstEvalFreeTypeParameter", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalFreeTypeParameter( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeConstEvalFreeTypeParameter, |
| problemMessage: |
| """The type '${type}' is not a constant because it depends on a type parameter, only instantiated types are allowed.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateConstEvalInvalidBinaryOperandType = const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidBinaryOperandType", |
| problemMessageTemplate: |
| r"""Binary operator '#stringOKEmpty' on '#constant' requires operand of type '#type', but was of type '#type2'.""", |
| withArguments: _withArgumentsConstEvalInvalidBinaryOperandType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeConstEvalInvalidBinaryOperandType = const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidBinaryOperandType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidBinaryOperandType( |
| String stringOKEmpty, |
| Constant _constant, |
| DartType _type, |
| DartType _type2, |
| bool isNonNullableByDefault) { |
| if (stringOKEmpty.isEmpty) stringOKEmpty = '(empty)'; |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String constant = constantParts.join(); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeConstEvalInvalidBinaryOperandType, |
| problemMessage: |
| """Binary operator '${stringOKEmpty}' on '${constant}' requires operand of type '${type}', but was of type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'stringOKEmpty': stringOKEmpty, |
| 'constant': _constant, |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)> |
| templateConstEvalInvalidEqualsOperandType = const Template< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidEqualsOperandType", |
| problemMessageTemplate: |
| r"""Binary operator '==' requires receiver constant '#constant' of type 'Null', 'bool', 'int', 'double', or 'String', but was of type '#type'.""", |
| withArguments: _withArgumentsConstEvalInvalidEqualsOperandType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)> |
| codeConstEvalInvalidEqualsOperandType = const Code< |
| Message Function( |
| Constant _constant, DartType _type, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidEqualsOperandType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidEqualsOperandType( |
| Constant _constant, DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| List<Object> typeParts = labeler.labelType(_type); |
| String constant = constantParts.join(); |
| String type = typeParts.join(); |
| return new Message( |
| codeConstEvalInvalidEqualsOperandType, |
| problemMessage: |
| """Binary operator '==' requires receiver constant '${constant}' of type 'Null', 'bool', 'int', 'double', or 'String', but was of type '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> |
| templateConstEvalInvalidMethodInvocation = const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidMethodInvocation", |
| problemMessageTemplate: |
| r"""The method '#stringOKEmpty' can't be invoked on '#constant' in a constant expression.""", |
| withArguments: _withArgumentsConstEvalInvalidMethodInvocation, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> codeConstEvalInvalidMethodInvocation = |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidMethodInvocation", |
| analyzerCodes: <String>["UNDEFINED_OPERATOR"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidMethodInvocation( |
| String stringOKEmpty, Constant _constant, bool isNonNullableByDefault) { |
| if (stringOKEmpty.isEmpty) stringOKEmpty = '(empty)'; |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalInvalidMethodInvocation, |
| problemMessage: |
| """The method '${stringOKEmpty}' can't be invoked on '${constant}' in a constant expression.""" + |
| labeler.originMessages, |
| arguments: { |
| 'stringOKEmpty': stringOKEmpty, |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> templateConstEvalInvalidPropertyGet = |
| const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidPropertyGet", |
| problemMessageTemplate: |
| r"""The property '#stringOKEmpty' can't be accessed on '#constant' in a constant expression.""", |
| withArguments: _withArgumentsConstEvalInvalidPropertyGet, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> codeConstEvalInvalidPropertyGet = |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidPropertyGet", |
| analyzerCodes: <String>["CONST_EVAL_THROWS_EXCEPTION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidPropertyGet( |
| String stringOKEmpty, Constant _constant, bool isNonNullableByDefault) { |
| if (stringOKEmpty.isEmpty) stringOKEmpty = '(empty)'; |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalInvalidPropertyGet, |
| problemMessage: |
| """The property '${stringOKEmpty}' can't be accessed on '${constant}' in a constant expression.""" + |
| labeler.originMessages, |
| arguments: { |
| 'stringOKEmpty': stringOKEmpty, |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> |
| templateConstEvalInvalidRecordIndexGet = const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidRecordIndexGet", |
| problemMessageTemplate: |
| r"""The property '#stringOKEmpty' can't be accessed on '#constant' in a constant expression.""", |
| withArguments: _withArgumentsConstEvalInvalidRecordIndexGet, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> codeConstEvalInvalidRecordIndexGet = |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidRecordIndexGet", |
| analyzerCodes: <String>["CONST_EVAL_THROWS_EXCEPTION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidRecordIndexGet( |
| String stringOKEmpty, Constant _constant, bool isNonNullableByDefault) { |
| if (stringOKEmpty.isEmpty) stringOKEmpty = '(empty)'; |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalInvalidRecordIndexGet, |
| problemMessage: |
| """The property '${stringOKEmpty}' can't be accessed on '${constant}' in a constant expression.""" + |
| labeler.originMessages, |
| arguments: { |
| 'stringOKEmpty': stringOKEmpty, |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> |
| templateConstEvalInvalidRecordNameGet = const Template< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidRecordNameGet", |
| problemMessageTemplate: |
| r"""The property '#stringOKEmpty' can't be accessed on '#constant' in a constant expression.""", |
| withArguments: _withArgumentsConstEvalInvalidRecordNameGet, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)> codeConstEvalInvalidRecordNameGet = |
| const Code< |
| Message Function(String stringOKEmpty, Constant _constant, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidRecordNameGet", |
| analyzerCodes: <String>["CONST_EVAL_THROWS_EXCEPTION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidRecordNameGet( |
| String stringOKEmpty, Constant _constant, bool isNonNullableByDefault) { |
| if (stringOKEmpty.isEmpty) stringOKEmpty = '(empty)'; |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalInvalidRecordNameGet, |
| problemMessage: |
| """The property '${stringOKEmpty}' can't be accessed on '${constant}' in a constant expression.""" + |
| labeler.originMessages, |
| arguments: { |
| 'stringOKEmpty': stringOKEmpty, |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalInvalidStringInterpolationOperand = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidStringInterpolationOperand", |
| problemMessageTemplate: |
| r"""The constant value '#constant' can't be used as part of a string interpolation in a constant expression. |
| Only values of type 'null', 'bool', 'int', 'double', or 'String' can be used.""", |
| withArguments: _withArgumentsConstEvalInvalidStringInterpolationOperand, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalInvalidStringInterpolationOperand = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidStringInterpolationOperand", |
| analyzerCodes: <String>["CONST_EVAL_TYPE_BOOL_NUM_STRING"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidStringInterpolationOperand( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalInvalidStringInterpolationOperand, |
| problemMessage: |
| """The constant value '${constant}' can't be used as part of a string interpolation in a constant expression. |
| Only values of type 'null', 'bool', 'int', 'double', or 'String' can be used.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalInvalidSymbolName = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidSymbolName", |
| problemMessageTemplate: |
| r"""The symbol name must be a valid public Dart member name, public constructor name, or library name, optionally qualified, but was '#constant'.""", |
| withArguments: _withArgumentsConstEvalInvalidSymbolName, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalInvalidSymbolName = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalInvalidSymbolName", |
| analyzerCodes: <String>["CONST_EVAL_THROWS_EXCEPTION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidSymbolName( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalInvalidSymbolName, |
| problemMessage: |
| """The symbol name must be a valid public Dart member name, public constructor name, or library name, optionally qualified, but was '${constant}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)> templateConstEvalInvalidType = |
| const Template< |
| Message Function(Constant _constant, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidType", |
| problemMessageTemplate: |
| r"""Expected constant '#constant' to be of type '#type', but was of type '#type2'.""", |
| withArguments: _withArgumentsConstEvalInvalidType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(Constant _constant, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)> codeConstEvalInvalidType = const Code< |
| Message Function(Constant _constant, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)>( |
| "ConstEvalInvalidType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalInvalidType(Constant _constant, DartType _type, |
| DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String constant = constantParts.join(); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeConstEvalInvalidType, |
| problemMessage: |
| """Expected constant '${constant}' to be of type '${type}', but was of type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalKeyImplementsEqual = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalKeyImplementsEqual", |
| problemMessageTemplate: |
| r"""The key '#constant' does not have a primitive operator '=='.""", |
| withArguments: _withArgumentsConstEvalKeyImplementsEqual, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalKeyImplementsEqual = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalKeyImplementsEqual", |
| analyzerCodes: <String>["CONST_MAP_KEY_EXPRESSION_TYPE_IMPLEMENTS_EQUALS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalKeyImplementsEqual( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalKeyImplementsEqual, |
| problemMessage: |
| """The key '${constant}' does not have a primitive operator '=='.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalKeyNotPrimitiveEquality = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalKeyNotPrimitiveEquality", |
| problemMessageTemplate: |
| r"""The key '#constant' does not have a primitive equality.""", |
| withArguments: _withArgumentsConstEvalKeyNotPrimitiveEquality, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalKeyNotPrimitiveEquality = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalKeyNotPrimitiveEquality", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalKeyNotPrimitiveEquality( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalKeyNotPrimitiveEquality, |
| problemMessage: |
| """The key '${constant}' does not have a primitive equality.""" + |
| labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)> |
| templateConstEvalUnhandledException = const Template< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalUnhandledException", |
| problemMessageTemplate: r"""Unhandled exception: #constant""", |
| withArguments: _withArgumentsConstEvalUnhandledException, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(Constant _constant, bool isNonNullableByDefault)> |
| codeConstEvalUnhandledException = const Code< |
| Message Function(Constant _constant, bool isNonNullableByDefault)>( |
| "ConstEvalUnhandledException", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsConstEvalUnhandledException( |
| Constant _constant, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> constantParts = labeler.labelConstant(_constant); |
| String constant = constantParts.join(); |
| return new Message( |
| codeConstEvalUnhandledException, |
| problemMessage: |
| """Unhandled exception: ${constant}""" + labeler.originMessages, |
| arguments: { |
| 'constant': _constant, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, String name, bool isNonNullableByDefault)> |
| templateDeferredTypeAnnotation = const Template< |
| Message Function( |
| DartType _type, String name, bool isNonNullableByDefault)>( |
| "DeferredTypeAnnotation", |
| problemMessageTemplate: |
| r"""The type '#type' is deferred loaded via prefix '#name' and can't be used as a type annotation.""", |
| correctionMessageTemplate: |
| r"""Try removing 'deferred' from the import of '#name' or use a supertype of '#type' that isn't deferred.""", |
| withArguments: _withArgumentsDeferredTypeAnnotation, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, |
| bool isNonNullableByDefault)> codeDeferredTypeAnnotation = const Code< |
| Message Function(DartType _type, String name, bool isNonNullableByDefault)>( |
| "DeferredTypeAnnotation", |
| analyzerCodes: <String>["TYPE_ANNOTATION_DEFERRED_CLASS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsDeferredTypeAnnotation( |
| DartType _type, String name, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| String type = typeParts.join(); |
| return new Message( |
| codeDeferredTypeAnnotation, |
| problemMessage: |
| """The type '${type}' is deferred loaded via prefix '${name}' and can't be used as a type annotation.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try removing 'deferred' from the import of '${name}' or use a supertype of '${type}' that isn't deferred.""", |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateFfiDartTypeMismatch = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "FfiDartTypeMismatch", |
| problemMessageTemplate: r"""Expected '#type' to be a subtype of '#type2'.""", |
| withArguments: _withArgumentsFfiDartTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeFfiDartTypeMismatch = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "FfiDartTypeMismatch", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFfiDartTypeMismatch( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeFfiDartTypeMismatch, |
| problemMessage: """Expected '${type}' to be a subtype of '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateFfiExpectedExceptionalReturn = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiExpectedExceptionalReturn", |
| problemMessageTemplate: |
| r"""Expected an exceptional return value for a native callback returning '#type'.""", |
| withArguments: _withArgumentsFfiExpectedExceptionalReturn, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeFfiExpectedExceptionalReturn = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiExpectedExceptionalReturn", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFfiExpectedExceptionalReturn( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeFfiExpectedExceptionalReturn, |
| problemMessage: |
| """Expected an exceptional return value for a native callback returning '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateFfiExpectedNoExceptionalReturn = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiExpectedNoExceptionalReturn", |
| problemMessageTemplate: |
| r"""Exceptional return value cannot be provided for a native callback returning '#type'.""", |
| withArguments: _withArgumentsFfiExpectedNoExceptionalReturn, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeFfiExpectedNoExceptionalReturn = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiExpectedNoExceptionalReturn", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFfiExpectedNoExceptionalReturn( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeFfiExpectedNoExceptionalReturn, |
| problemMessage: |
| """Exceptional return value cannot be provided for a native callback returning '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateFfiNativeCallableListenerReturnVoid = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiNativeCallableListenerReturnVoid", |
| problemMessageTemplate: |
| r"""The return type of the function passed to NativeCallable.listener must be void rather than '#type'.""", |
| withArguments: _withArgumentsFfiNativeCallableListenerReturnVoid, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeFfiNativeCallableListenerReturnVoid = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiNativeCallableListenerReturnVoid", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFfiNativeCallableListenerReturnVoid( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeFfiNativeCallableListenerReturnVoid, |
| problemMessage: |
| """The return type of the function passed to NativeCallable.listener must be void rather than '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateFfiTypeInvalid = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiTypeInvalid", |
| problemMessageTemplate: |
| r"""Expected type '#type' to be a valid and instantiated subtype of 'NativeType'.""", |
| withArguments: _withArgumentsFfiTypeInvalid, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeFfiTypeInvalid = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "FfiTypeInvalid", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFfiTypeInvalid( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeFfiTypeInvalid, |
| problemMessage: |
| """Expected type '${type}' to be a valid and instantiated subtype of 'NativeType'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)> templateFfiTypeMismatch = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)>( |
| "FfiTypeMismatch", |
| problemMessageTemplate: |
| r"""Expected type '#type' to be '#type2', which is the Dart type corresponding to '#type3'.""", |
| withArguments: _withArgumentsFfiTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)> codeFfiTypeMismatch = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)>( |
| "FfiTypeMismatch", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFfiTypeMismatch(DartType _type, DartType _type2, |
| DartType _type3, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| return new Message( |
| codeFfiTypeMismatch, |
| problemMessage: |
| """Expected type '${type}' to be '${type2}', which is the Dart type corresponding to '${type3}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateFieldNonNullableNotInitializedByConstructorError = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "FieldNonNullableNotInitializedByConstructorError", |
| problemMessageTemplate: |
| r"""This constructor should initialize field '#name' because its type '#type' doesn't allow null.""", |
| withArguments: _withArgumentsFieldNonNullableNotInitializedByConstructorError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeFieldNonNullableNotInitializedByConstructorError = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "FieldNonNullableNotInitializedByConstructorError", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFieldNonNullableNotInitializedByConstructorError( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeFieldNonNullableNotInitializedByConstructorError, |
| problemMessage: |
| """This constructor should initialize field '${name}' because its type '${type}' doesn't allow null.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateFieldNonNullableWithoutInitializerError = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "FieldNonNullableWithoutInitializerError", |
| problemMessageTemplate: |
| r"""Field '#name' should be initialized because its type '#type' doesn't allow null.""", |
| withArguments: _withArgumentsFieldNonNullableWithoutInitializerError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeFieldNonNullableWithoutInitializerError = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "FieldNonNullableWithoutInitializerError", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsFieldNonNullableWithoutInitializerError( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeFieldNonNullableWithoutInitializerError, |
| problemMessage: |
| """Field '${name}' should be initialized because its type '${type}' doesn't allow null.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateForInLoopElementTypeNotAssignable = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopElementTypeNotAssignable", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be assigned to a variable of type '#type2'.""", |
| correctionMessageTemplate: r"""Try changing the type of the variable.""", |
| withArguments: _withArgumentsForInLoopElementTypeNotAssignable, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeForInLoopElementTypeNotAssignable = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopElementTypeNotAssignable", |
| analyzerCodes: <String>["FOR_IN_OF_INVALID_ELEMENT_TYPE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsForInLoopElementTypeNotAssignable( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeForInLoopElementTypeNotAssignable, |
| problemMessage: |
| """A value of type '${type}' can't be assigned to a variable of type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: """Try changing the type of the variable.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateForInLoopElementTypeNotAssignableNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopElementTypeNotAssignableNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be assigned to a variable of type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| correctionMessageTemplate: r"""Try changing the type of the variable.""", |
| withArguments: _withArgumentsForInLoopElementTypeNotAssignableNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeForInLoopElementTypeNotAssignableNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopElementTypeNotAssignableNullability", |
| analyzerCodes: <String>["FOR_IN_OF_INVALID_ELEMENT_TYPE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsForInLoopElementTypeNotAssignableNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeForInLoopElementTypeNotAssignableNullability, |
| problemMessage: |
| """A value of type '${type}' can't be assigned to a variable of type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| correctionMessage: """Try changing the type of the variable.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateForInLoopElementTypeNotAssignablePartNullability = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "ForInLoopElementTypeNotAssignablePartNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be assigned to a variable of type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| correctionMessageTemplate: r"""Try changing the type of the variable.""", |
| withArguments: _withArgumentsForInLoopElementTypeNotAssignablePartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeForInLoopElementTypeNotAssignablePartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "ForInLoopElementTypeNotAssignablePartNullability", |
| analyzerCodes: <String>["FOR_IN_OF_INVALID_ELEMENT_TYPE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsForInLoopElementTypeNotAssignablePartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeForInLoopElementTypeNotAssignablePartNullability, |
| problemMessage: |
| """A value of type '${type}' can't be assigned to a variable of type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| correctionMessage: """Try changing the type of the variable.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateForInLoopTypeNotIterable = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopTypeNotIterable", |
| problemMessageTemplate: |
| r"""The type '#type' used in the 'for' loop must implement '#type2'.""", |
| withArguments: _withArgumentsForInLoopTypeNotIterable, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeForInLoopTypeNotIterable = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopTypeNotIterable", |
| analyzerCodes: <String>["FOR_IN_OF_INVALID_TYPE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsForInLoopTypeNotIterable( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeForInLoopTypeNotIterable, |
| problemMessage: |
| """The type '${type}' used in the 'for' loop must implement '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateForInLoopTypeNotIterableNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopTypeNotIterableNullability", |
| problemMessageTemplate: |
| r"""The type '#type' used in the 'for' loop must implement '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: _withArgumentsForInLoopTypeNotIterableNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeForInLoopTypeNotIterableNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "ForInLoopTypeNotIterableNullability", |
| analyzerCodes: <String>["FOR_IN_OF_INVALID_TYPE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsForInLoopTypeNotIterableNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeForInLoopTypeNotIterableNullability, |
| problemMessage: |
| """The type '${type}' used in the 'for' loop must implement '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateForInLoopTypeNotIterablePartNullability = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "ForInLoopTypeNotIterablePartNullability", |
| problemMessageTemplate: |
| r"""The type '#type' used in the 'for' loop must implement '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: _withArgumentsForInLoopTypeNotIterablePartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeForInLoopTypeNotIterablePartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "ForInLoopTypeNotIterablePartNullability", |
| analyzerCodes: <String>["FOR_IN_OF_INVALID_TYPE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsForInLoopTypeNotIterablePartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeForInLoopTypeNotIterablePartNullability, |
| problemMessage: |
| """The type '${type}' used in the 'for' loop must implement '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateGenericFunctionTypeAsTypeArgumentThroughTypedef = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "GenericFunctionTypeAsTypeArgumentThroughTypedef", |
| problemMessageTemplate: |
| r"""Generic function type '#type' used as a type argument through typedef '#type2'.""", |
| correctionMessageTemplate: |
| r"""Try providing a non-generic function type explicitly.""", |
| withArguments: _withArgumentsGenericFunctionTypeAsTypeArgumentThroughTypedef, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeGenericFunctionTypeAsTypeArgumentThroughTypedef = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "GenericFunctionTypeAsTypeArgumentThroughTypedef", |
| analyzerCodes: <String>["GENERIC_FUNCTION_CANNOT_BE_TYPE_ARGUMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsGenericFunctionTypeAsTypeArgumentThroughTypedef( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeGenericFunctionTypeAsTypeArgumentThroughTypedef, |
| problemMessage: |
| """Generic function type '${type}' used as a type argument through typedef '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try providing a non-generic function type explicitly.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateGenericFunctionTypeInferredAsActualTypeArgument = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "GenericFunctionTypeInferredAsActualTypeArgument", |
| problemMessageTemplate: |
| r"""Generic function type '#type' inferred as a type argument.""", |
| correctionMessageTemplate: |
| r"""Try providing a non-generic function type explicitly.""", |
| withArguments: _withArgumentsGenericFunctionTypeInferredAsActualTypeArgument, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeGenericFunctionTypeInferredAsActualTypeArgument = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "GenericFunctionTypeInferredAsActualTypeArgument", |
| analyzerCodes: <String>["GENERIC_FUNCTION_CANNOT_BE_TYPE_ARGUMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsGenericFunctionTypeInferredAsActualTypeArgument( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeGenericFunctionTypeInferredAsActualTypeArgument, |
| problemMessage: |
| """Generic function type '${type}' inferred as a type argument.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try providing a non-generic function type explicitly.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateImplicitCallOfNonMethod = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ImplicitCallOfNonMethod", |
| problemMessageTemplate: |
| r"""Cannot invoke an instance of '#type' because it declares 'call' to be something other than a method.""", |
| correctionMessageTemplate: |
| r"""Try changing 'call' to a method or explicitly invoke 'call'.""", |
| withArguments: _withArgumentsImplicitCallOfNonMethod, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeImplicitCallOfNonMethod = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ImplicitCallOfNonMethod", |
| analyzerCodes: <String>["IMPLICIT_CALL_OF_NON_METHOD"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsImplicitCallOfNonMethod( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeImplicitCallOfNonMethod, |
| problemMessage: |
| """Cannot invoke an instance of '${type}' because it declares 'call' to be something other than a method.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing 'call' to a method or explicitly invoke 'call'.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateImplicitReturnNull = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ImplicitReturnNull", |
| problemMessageTemplate: |
| r"""A non-null value must be returned since the return type '#type' doesn't allow null.""", |
| withArguments: _withArgumentsImplicitReturnNull, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeImplicitReturnNull = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ImplicitReturnNull", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsImplicitReturnNull( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeImplicitReturnNull, |
| problemMessage: |
| """A non-null value must be returned since the return type '${type}' doesn't allow null.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateIncompatibleRedirecteeFunctionType = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "IncompatibleRedirecteeFunctionType", |
| problemMessageTemplate: |
| r"""The constructor function type '#type' isn't a subtype of '#type2'.""", |
| withArguments: _withArgumentsIncompatibleRedirecteeFunctionType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeIncompatibleRedirecteeFunctionType = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "IncompatibleRedirecteeFunctionType", |
| analyzerCodes: <String>["REDIRECT_TO_INVALID_TYPE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIncompatibleRedirecteeFunctionType( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeIncompatibleRedirecteeFunctionType, |
| problemMessage: |
| """The constructor function type '${type}' isn't a subtype of '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| String name2, bool isNonNullableByDefault)> |
| templateIncorrectTypeArgument = const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| String name2, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgument", |
| problemMessageTemplate: |
| r"""Type argument '#type' doesn't conform to the bound '#type2' of the type variable '#name' on '#name2'.""", |
| correctionMessageTemplate: |
| r"""Try changing type arguments so that they conform to the bounds.""", |
| withArguments: _withArgumentsIncorrectTypeArgument, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, String name, String name2, |
| bool isNonNullableByDefault)> codeIncorrectTypeArgument = const Code< |
| Message Function(DartType _type, DartType _type2, String name, String name2, |
| bool isNonNullableByDefault)>( |
| "IncorrectTypeArgument", |
| analyzerCodes: <String>["TYPE_ARGUMENT_NOT_MATCHING_BOUNDS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIncorrectTypeArgument(DartType _type, DartType _type2, |
| String name, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeIncorrectTypeArgument, |
| problemMessage: |
| """Type argument '${type}' doesn't conform to the bound '${type2}' of the type variable '${name}' on '${name2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing type arguments so that they conform to the bounds.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'name': name, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| String name2, bool isNonNullableByDefault)> |
| templateIncorrectTypeArgumentInferred = const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| String name2, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentInferred", |
| problemMessageTemplate: |
| r"""Inferred type argument '#type' doesn't conform to the bound '#type2' of the type variable '#name' on '#name2'.""", |
| correctionMessageTemplate: |
| r"""Try specifying type arguments explicitly so that they conform to the bounds.""", |
| withArguments: _withArgumentsIncorrectTypeArgumentInferred, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| String name2, bool isNonNullableByDefault)> |
| codeIncorrectTypeArgumentInferred = const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| String name2, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentInferred", |
| analyzerCodes: <String>["TYPE_ARGUMENT_NOT_MATCHING_BOUNDS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIncorrectTypeArgumentInferred(DartType _type, |
| DartType _type2, String name, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeIncorrectTypeArgumentInferred, |
| problemMessage: |
| """Inferred type argument '${type}' doesn't conform to the bound '${type2}' of the type variable '${name}' on '${name2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try specifying type arguments explicitly so that they conform to the bounds.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'name': name, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)> |
| templateIncorrectTypeArgumentInstantiation = const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentInstantiation", |
| problemMessageTemplate: |
| r"""Type argument '#type' doesn't conform to the bound '#type2' of the type variable '#name' on '#type3'.""", |
| correctionMessageTemplate: |
| r"""Try changing type arguments so that they conform to the bounds.""", |
| withArguments: _withArgumentsIncorrectTypeArgumentInstantiation, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)> |
| codeIncorrectTypeArgumentInstantiation = const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentInstantiation", |
| analyzerCodes: <String>["TYPE_ARGUMENT_NOT_MATCHING_BOUNDS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIncorrectTypeArgumentInstantiation( |
| DartType _type, |
| DartType _type2, |
| String name, |
| DartType _type3, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| return new Message( |
| codeIncorrectTypeArgumentInstantiation, |
| problemMessage: |
| """Type argument '${type}' doesn't conform to the bound '${type2}' of the type variable '${name}' on '${type3}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing type arguments so that they conform to the bounds.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'name': name, |
| 'type3': _type3, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)> |
| templateIncorrectTypeArgumentInstantiationInferred = const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentInstantiationInferred", |
| problemMessageTemplate: |
| r"""Inferred type argument '#type' doesn't conform to the bound '#type2' of the type variable '#name' on '#type3'.""", |
| correctionMessageTemplate: |
| r"""Try specifying type arguments explicitly so that they conform to the bounds.""", |
| withArguments: _withArgumentsIncorrectTypeArgumentInstantiationInferred, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)> |
| codeIncorrectTypeArgumentInstantiationInferred = const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentInstantiationInferred", |
| analyzerCodes: <String>["TYPE_ARGUMENT_NOT_MATCHING_BOUNDS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIncorrectTypeArgumentInstantiationInferred( |
| DartType _type, |
| DartType _type2, |
| String name, |
| DartType _type3, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| return new Message( |
| codeIncorrectTypeArgumentInstantiationInferred, |
| problemMessage: |
| """Inferred type argument '${type}' doesn't conform to the bound '${type2}' of the type variable '${name}' on '${type3}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try specifying type arguments explicitly so that they conform to the bounds.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'name': name, |
| 'type3': _type3, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)> |
| templateIncorrectTypeArgumentQualified = const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentQualified", |
| problemMessageTemplate: |
| r"""Type argument '#type' doesn't conform to the bound '#type2' of the type variable '#name' on '#type3.#name2'.""", |
| correctionMessageTemplate: |
| r"""Try changing type arguments so that they conform to the bounds.""", |
| withArguments: _withArgumentsIncorrectTypeArgumentQualified, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)> |
| codeIncorrectTypeArgumentQualified = const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentQualified", |
| analyzerCodes: <String>["TYPE_ARGUMENT_NOT_MATCHING_BOUNDS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIncorrectTypeArgumentQualified( |
| DartType _type, |
| DartType _type2, |
| String name, |
| DartType _type3, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| return new Message( |
| codeIncorrectTypeArgumentQualified, |
| problemMessage: |
| """Type argument '${type}' doesn't conform to the bound '${type2}' of the type variable '${name}' on '${type3}.${name2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing type arguments so that they conform to the bounds.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'name': name, |
| 'type3': _type3, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)> |
| templateIncorrectTypeArgumentQualifiedInferred = const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentQualifiedInferred", |
| problemMessageTemplate: |
| r"""Inferred type argument '#type' doesn't conform to the bound '#type2' of the type variable '#name' on '#type3.#name2'.""", |
| correctionMessageTemplate: |
| r"""Try specifying type arguments explicitly so that they conform to the bounds.""", |
| withArguments: _withArgumentsIncorrectTypeArgumentQualifiedInferred, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)> |
| codeIncorrectTypeArgumentQualifiedInferred = const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| DartType _type3, String name2, bool isNonNullableByDefault)>( |
| "IncorrectTypeArgumentQualifiedInferred", |
| analyzerCodes: <String>["TYPE_ARGUMENT_NOT_MATCHING_BOUNDS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIncorrectTypeArgumentQualifiedInferred( |
| DartType _type, |
| DartType _type2, |
| String name, |
| DartType _type3, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| return new Message( |
| codeIncorrectTypeArgumentQualifiedInferred, |
| problemMessage: |
| """Inferred type argument '${type}' doesn't conform to the bound '${type2}' of the type variable '${name}' on '${type3}.${name2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try specifying type arguments explicitly so that they conform to the bounds.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'name': name, |
| 'type3': _type3, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| int count, int count2, DartType _type, bool isNonNullableByDefault)> |
| templateIndexOutOfBoundInRecordIndexGet = const Template< |
| Message Function(int count, int count2, DartType _type, |
| bool isNonNullableByDefault)>( |
| "IndexOutOfBoundInRecordIndexGet", |
| problemMessageTemplate: |
| r"""Index #count is out of range 0..#count2 of positional fields of records #type.""", |
| withArguments: _withArgumentsIndexOutOfBoundInRecordIndexGet, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| int count, int count2, DartType _type, bool isNonNullableByDefault)> |
| codeIndexOutOfBoundInRecordIndexGet = const Code< |
| Message Function(int count, int count2, DartType _type, |
| bool isNonNullableByDefault)>( |
| "IndexOutOfBoundInRecordIndexGet", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsIndexOutOfBoundInRecordIndexGet( |
| int count, int count2, DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeIndexOutOfBoundInRecordIndexGet, |
| problemMessage: |
| """Index ${count} is out of range 0..${count2} of positional fields of records ${type}.""" + |
| labeler.originMessages, |
| arguments: { |
| 'count': count, |
| 'count2': count2, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)> |
| templateInitializingFormalTypeMismatch = const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)>( |
| "InitializingFormalTypeMismatch", |
| problemMessageTemplate: |
| r"""The type of parameter '#name', '#type' is not a subtype of the corresponding field's type, '#type2'.""", |
| correctionMessageTemplate: |
| r"""Try changing the type of parameter '#name' to a subtype of '#type2'.""", |
| withArguments: _withArgumentsInitializingFormalTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)> codeInitializingFormalTypeMismatch = |
| const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| bool isNonNullableByDefault)>( |
| "InitializingFormalTypeMismatch", |
| analyzerCodes: <String>["INVALID_PARAMETER_DECLARATION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInitializingFormalTypeMismatch( |
| String name, DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInitializingFormalTypeMismatch, |
| problemMessage: |
| """The type of parameter '${name}', '${type}' is not a subtype of the corresponding field's type, '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing the type of parameter '${name}' to a subtype of '${type2}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateInstantiationNonGenericFunctionType = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InstantiationNonGenericFunctionType", |
| problemMessageTemplate: |
| r"""The static type of the explicit instantiation operand must be a generic function type but is '#type'.""", |
| correctionMessageTemplate: |
| r"""Try changing the operand or remove the type arguments.""", |
| withArguments: _withArgumentsInstantiationNonGenericFunctionType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeInstantiationNonGenericFunctionType = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InstantiationNonGenericFunctionType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInstantiationNonGenericFunctionType( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeInstantiationNonGenericFunctionType, |
| problemMessage: |
| """The static type of the explicit instantiation operand must be a generic function type but is '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing the operand or remove the type arguments.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateInstantiationNullableGenericFunctionType = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InstantiationNullableGenericFunctionType", |
| problemMessageTemplate: |
| r"""The static type of the explicit instantiation operand must be a non-null generic function type but is '#type'.""", |
| correctionMessageTemplate: |
| r"""Try changing the operand or remove the type arguments.""", |
| withArguments: _withArgumentsInstantiationNullableGenericFunctionType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeInstantiationNullableGenericFunctionType = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InstantiationNullableGenericFunctionType", |
| analyzerCodes: <String>["DISALLOWED_TYPE_INSTANTIATION_EXPRESSION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInstantiationNullableGenericFunctionType( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeInstantiationNullableGenericFunctionType, |
| problemMessage: |
| """The static type of the explicit instantiation operand must be a non-null generic function type but is '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing the operand or remove the type arguments.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)> |
| templateInternalProblemUnsupportedNullability = const Template< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)>( |
| "InternalProblemUnsupportedNullability", |
| problemMessageTemplate: |
| r"""Unsupported nullability value '#string' on type '#type'.""", |
| withArguments: _withArgumentsInternalProblemUnsupportedNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)> |
| codeInternalProblemUnsupportedNullability = const Code< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)>( |
| "InternalProblemUnsupportedNullability", |
| severity: Severity.internalProblem, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInternalProblemUnsupportedNullability( |
| String string, DartType _type, bool isNonNullableByDefault) { |
| if (string.isEmpty) throw 'No string provided'; |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeInternalProblemUnsupportedNullability, |
| problemMessage: |
| """Unsupported nullability value '${string}' on type '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'string': string, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidAssignmentError = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidAssignmentError", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be assigned to a variable of type '#type2'.""", |
| withArguments: _withArgumentsInvalidAssignmentError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidAssignmentError = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidAssignmentError", |
| analyzerCodes: <String>["INVALID_ASSIGNMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidAssignmentError( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidAssignmentError, |
| problemMessage: |
| """A value of type '${type}' can't be assigned to a variable of type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidAssignmentErrorNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be assigned to a variable of type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: _withArgumentsInvalidAssignmentErrorNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidAssignmentErrorNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorNullability", |
| analyzerCodes: <String>["INVALID_ASSIGNMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidAssignmentErrorNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidAssignmentErrorNullability, |
| problemMessage: |
| """A value of type '${type}' can't be assigned to a variable of type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateInvalidAssignmentErrorNullabilityNull = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorNullabilityNull", |
| problemMessageTemplate: |
| r"""The value 'null' can't be assigned to a variable of type '#type' because '#type' is not nullable.""", |
| withArguments: _withArgumentsInvalidAssignmentErrorNullabilityNull, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeInvalidAssignmentErrorNullabilityNull = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorNullabilityNull", |
| analyzerCodes: <String>["INVALID_ASSIGNMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidAssignmentErrorNullabilityNull( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeInvalidAssignmentErrorNullabilityNull, |
| problemMessage: |
| """The value 'null' can't be assigned to a variable of type '${type}' because '${type}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidAssignmentErrorNullabilityNullType = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorNullabilityNullType", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be assigned to a variable of type '#type2' because '#type2' is not nullable.""", |
| withArguments: _withArgumentsInvalidAssignmentErrorNullabilityNullType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidAssignmentErrorNullabilityNullType = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorNullabilityNullType", |
| analyzerCodes: <String>["INVALID_ASSIGNMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidAssignmentErrorNullabilityNullType( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidAssignmentErrorNullabilityNullType, |
| problemMessage: |
| """A value of type '${type}' can't be assigned to a variable of type '${type2}' because '${type2}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateInvalidAssignmentErrorPartNullability = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorPartNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be assigned to a variable of type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: _withArgumentsInvalidAssignmentErrorPartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeInvalidAssignmentErrorPartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "InvalidAssignmentErrorPartNullability", |
| analyzerCodes: <String>["INVALID_ASSIGNMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidAssignmentErrorPartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeInvalidAssignmentErrorPartNullability, |
| problemMessage: |
| """A value of type '${type}' can't be assigned to a variable of type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastFunctionExpr = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastFunctionExpr", |
| problemMessageTemplate: |
| r"""The function expression type '#type' isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the function expression or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastFunctionExpr, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastFunctionExpr = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastFunctionExpr", |
| analyzerCodes: <String>["INVALID_CAST_FUNCTION_EXPR"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastFunctionExpr( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastFunctionExpr, |
| problemMessage: |
| """The function expression type '${type}' isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the function expression or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastLiteralList = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLiteralList", |
| problemMessageTemplate: |
| r"""The list literal type '#type' isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the list literal or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastLiteralList, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastLiteralList = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLiteralList", |
| analyzerCodes: <String>["INVALID_CAST_LITERAL_LIST"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastLiteralList( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastLiteralList, |
| problemMessage: |
| """The list literal type '${type}' isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the list literal or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastLiteralMap = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLiteralMap", |
| problemMessageTemplate: |
| r"""The map literal type '#type' isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the map literal or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastLiteralMap, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastLiteralMap = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLiteralMap", |
| analyzerCodes: <String>["INVALID_CAST_LITERAL_MAP"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastLiteralMap( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastLiteralMap, |
| problemMessage: |
| """The map literal type '${type}' isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the map literal or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastLiteralSet = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLiteralSet", |
| problemMessageTemplate: |
| r"""The set literal type '#type' isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the set literal or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastLiteralSet, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastLiteralSet = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLiteralSet", |
| analyzerCodes: <String>["INVALID_CAST_LITERAL_SET"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastLiteralSet( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastLiteralSet, |
| problemMessage: |
| """The set literal type '${type}' isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the set literal or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastLocalFunction = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLocalFunction", |
| problemMessageTemplate: |
| r"""The local function has type '#type' that isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the function or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastLocalFunction, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastLocalFunction = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastLocalFunction", |
| analyzerCodes: <String>["INVALID_CAST_FUNCTION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastLocalFunction( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastLocalFunction, |
| problemMessage: |
| """The local function has type '${type}' that isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the function or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastNewExpr = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastNewExpr", |
| problemMessageTemplate: |
| r"""The constructor returns type '#type' that isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the object being constructed or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastNewExpr, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastNewExpr = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastNewExpr", |
| analyzerCodes: <String>["INVALID_CAST_NEW_EXPR"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastNewExpr( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastNewExpr, |
| problemMessage: |
| """The constructor returns type '${type}' that isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the object being constructed or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastStaticMethod = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastStaticMethod", |
| problemMessageTemplate: |
| r"""The static method has type '#type' that isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the method or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastStaticMethod, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastStaticMethod = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastStaticMethod", |
| analyzerCodes: <String>["INVALID_CAST_METHOD"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastStaticMethod( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastStaticMethod, |
| problemMessage: |
| """The static method has type '${type}' that isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the method or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidCastTopLevelFunction = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastTopLevelFunction", |
| problemMessageTemplate: |
| r"""The top level function has type '#type' that isn't of expected type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Change the type of the function or the context in which it is used.""", |
| withArguments: _withArgumentsInvalidCastTopLevelFunction, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidCastTopLevelFunction = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidCastTopLevelFunction", |
| analyzerCodes: <String>["INVALID_CAST_FUNCTION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidCastTopLevelFunction( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidCastTopLevelFunction, |
| problemMessage: |
| """The top level function has type '${type}' that isn't of expected type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change the type of the function or the context in which it is used.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| DartType _type3, bool isNonNullableByDefault)> |
| templateInvalidExtensionTypeSuperExtensionType = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| DartType _type3, bool isNonNullableByDefault)>( |
| "InvalidExtensionTypeSuperExtensionType", |
| problemMessageTemplate: |
| r"""The representation type '#type' of extension type '#name' must be either a subtype of the representation type '#type2' of the implemented extension type '#type3' or a subtype of '#type3' itself.""", |
| correctionMessageTemplate: |
| r"""Try changing the representation type to a subtype of '#type2'.""", |
| withArguments: _withArgumentsInvalidExtensionTypeSuperExtensionType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| DartType _type3, bool isNonNullableByDefault)> |
| codeInvalidExtensionTypeSuperExtensionType = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| DartType _type3, bool isNonNullableByDefault)>( |
| "InvalidExtensionTypeSuperExtensionType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidExtensionTypeSuperExtensionType( |
| DartType _type, |
| String name, |
| DartType _type2, |
| DartType _type3, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| return new Message( |
| codeInvalidExtensionTypeSuperExtensionType, |
| problemMessage: |
| """The representation type '${type}' of extension type '${name}' must be either a subtype of the representation type '${type2}' of the implemented extension type '${type3}' or a subtype of '${type3}' itself.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing the representation type to a subtype of '${type2}'.""", |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'type3': _type3, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| bool isNonNullableByDefault)> |
| templateInvalidExtensionTypeSuperInterface = const Template< |
| Message Function(DartType _type, DartType _type2, String name, |
| bool isNonNullableByDefault)>( |
| "InvalidExtensionTypeSuperInterface", |
| problemMessageTemplate: |
| r"""The implemented interface '#type' must be a supertype of the representation type '#type2' of extension type '#name'.""", |
| correctionMessageTemplate: |
| r"""Try changing the interface type to a supertype of '#type2' or the representation type to a subtype of '#type'.""", |
| withArguments: _withArgumentsInvalidExtensionTypeSuperInterface, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| bool isNonNullableByDefault)> |
| codeInvalidExtensionTypeSuperInterface = const Code< |
| Message Function(DartType _type, DartType _type2, String name, |
| bool isNonNullableByDefault)>( |
| "InvalidExtensionTypeSuperInterface", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidExtensionTypeSuperInterface( |
| DartType _type, DartType _type2, String name, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidExtensionTypeSuperInterface, |
| problemMessage: |
| """The implemented interface '${type}' must be a supertype of the representation type '${type2}' of extension type '${name}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing the interface type to a supertype of '${type2}' or the representation type to a subtype of '${type}'.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'name': name, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterType = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterType", |
| problemMessageTemplate: |
| r"""The type '#type' of the getter '#name' is not a subtype of the type '#type2' of the setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, String name2, |
| bool isNonNullableByDefault)> codeInvalidGetterSetterType = const Code< |
| Message Function(DartType _type, String name, DartType _type2, String name2, |
| bool isNonNullableByDefault)>( |
| "InvalidGetterSetterType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterType(DartType _type, String name, |
| DartType _type2, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterType, |
| problemMessage: |
| """The type '${type}' of the getter '${name}' is not a subtype of the type '${type2}' of the setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeBothInheritedField = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedField", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited field '#name' is not a subtype of the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeBothInheritedField, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeBothInheritedField = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedField", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeBothInheritedField(DartType _type, |
| String name, DartType _type2, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeBothInheritedField, |
| problemMessage: |
| """The type '${type}' of the inherited field '${name}' is not a subtype of the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeBothInheritedFieldLegacy = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedFieldLegacy", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited field '#name' is not assignable to the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeBothInheritedFieldLegacy, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeBothInheritedFieldLegacy = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedFieldLegacy", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeBothInheritedFieldLegacy( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeBothInheritedFieldLegacy, |
| problemMessage: |
| """The type '${type}' of the inherited field '${name}' is not assignable to the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeBothInheritedGetter = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedGetter", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited getter '#name' is not a subtype of the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeBothInheritedGetter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeBothInheritedGetter = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedGetter", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeBothInheritedGetter(DartType _type, |
| String name, DartType _type2, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeBothInheritedGetter, |
| problemMessage: |
| """The type '${type}' of the inherited getter '${name}' is not a subtype of the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeBothInheritedGetterLegacy = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedGetterLegacy", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited getter '#name' is not assignable to the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeBothInheritedGetterLegacy, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeBothInheritedGetterLegacy = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeBothInheritedGetterLegacy", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeBothInheritedGetterLegacy( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeBothInheritedGetterLegacy, |
| problemMessage: |
| """The type '${type}' of the inherited getter '${name}' is not assignable to the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeFieldInherited = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeFieldInherited", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited field '#name' is not a subtype of the type '#type2' of the setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeFieldInherited, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeFieldInherited = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeFieldInherited", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeFieldInherited(DartType _type, |
| String name, DartType _type2, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeFieldInherited, |
| problemMessage: |
| """The type '${type}' of the inherited field '${name}' is not a subtype of the type '${type2}' of the setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeFieldInheritedLegacy = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeFieldInheritedLegacy", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited field '#name' is not assignable to the type '#type2' of the setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeFieldInheritedLegacy, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeFieldInheritedLegacy = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeFieldInheritedLegacy", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeFieldInheritedLegacy( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeFieldInheritedLegacy, |
| problemMessage: |
| """The type '${type}' of the inherited field '${name}' is not assignable to the type '${type2}' of the setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeGetterInherited = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeGetterInherited", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited getter '#name' is not a subtype of the type '#type2' of the setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeGetterInherited, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeGetterInherited = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeGetterInherited", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeGetterInherited(DartType _type, |
| String name, DartType _type2, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeGetterInherited, |
| problemMessage: |
| """The type '${type}' of the inherited getter '${name}' is not a subtype of the type '${type2}' of the setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeGetterInheritedLegacy = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeGetterInheritedLegacy", |
| problemMessageTemplate: |
| r"""The type '#type' of the inherited getter '#name' is not assignable to the type '#type2' of the setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeGetterInheritedLegacy, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeGetterInheritedLegacy = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeGetterInheritedLegacy", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeGetterInheritedLegacy( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeGetterInheritedLegacy, |
| problemMessage: |
| """The type '${type}' of the inherited getter '${name}' is not assignable to the type '${type2}' of the setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeLegacy = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeLegacy", |
| problemMessageTemplate: |
| r"""The type '#type' of the getter '#name' is not assignable to the type '#type2' of the setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeLegacy, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeLegacy = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeLegacy", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeLegacy(DartType _type, String name, |
| DartType _type2, String name2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeLegacy, |
| problemMessage: |
| """The type '${type}' of the getter '${name}' is not assignable to the type '${type2}' of the setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeSetterInheritedField = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedField", |
| problemMessageTemplate: |
| r"""The type '#type' of the field '#name' is not a subtype of the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeSetterInheritedField, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeSetterInheritedField = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedField", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeSetterInheritedField( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeSetterInheritedField, |
| problemMessage: |
| """The type '${type}' of the field '${name}' is not a subtype of the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeSetterInheritedFieldLegacy = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedFieldLegacy", |
| problemMessageTemplate: |
| r"""The type '#type' of the field '#name' is not assignable to the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: |
| _withArgumentsInvalidGetterSetterTypeSetterInheritedFieldLegacy, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeSetterInheritedFieldLegacy = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedFieldLegacy", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeSetterInheritedFieldLegacy( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeSetterInheritedFieldLegacy, |
| problemMessage: |
| """The type '${type}' of the field '${name}' is not assignable to the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeSetterInheritedGetter = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedGetter", |
| problemMessageTemplate: |
| r"""The type '#type' of the getter '#name' is not a subtype of the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: _withArgumentsInvalidGetterSetterTypeSetterInheritedGetter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeSetterInheritedGetter = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedGetter", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeSetterInheritedGetter( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeSetterInheritedGetter, |
| problemMessage: |
| """The type '${type}' of the getter '${name}' is not a subtype of the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateInvalidGetterSetterTypeSetterInheritedGetterLegacy = const Template< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedGetterLegacy", |
| problemMessageTemplate: |
| r"""The type '#type' of the getter '#name' is not assignable to the type '#type2' of the inherited setter '#name2'.""", |
| withArguments: |
| _withArgumentsInvalidGetterSetterTypeSetterInheritedGetterLegacy, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeInvalidGetterSetterTypeSetterInheritedGetterLegacy = const Code< |
| Message Function(DartType _type, String name, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "InvalidGetterSetterTypeSetterInheritedGetterLegacy", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidGetterSetterTypeSetterInheritedGetterLegacy( |
| DartType _type, |
| String name, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidGetterSetterTypeSetterInheritedGetterLegacy, |
| problemMessage: |
| """The type '${type}' of the getter '${name}' is not assignable to the type '${type2}' of the inherited setter '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidReturn = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturn", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from a function with return type '#type2'.""", |
| withArguments: _withArgumentsInvalidReturn, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidReturn = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturn", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturn( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidReturn, |
| problemMessage: |
| """A value of type '${type}' can't be returned from a function with return type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidReturnAsync = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnAsync", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from an async function with return type '#type2'.""", |
| withArguments: _withArgumentsInvalidReturnAsync, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidReturnAsync = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnAsync", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnAsync( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidReturnAsync, |
| problemMessage: |
| """A value of type '${type}' can't be returned from an async function with return type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidReturnAsyncNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from an async function with return type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: _withArgumentsInvalidReturnAsyncNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidReturnAsyncNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncNullability", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnAsyncNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidReturnAsyncNullability, |
| problemMessage: |
| """A value of type '${type}' can't be returned from an async function with return type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateInvalidReturnAsyncNullabilityNull = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncNullabilityNull", |
| problemMessageTemplate: |
| r"""The value 'null' can't be returned from an async function with return type '#type' because '#type' is not nullable.""", |
| withArguments: _withArgumentsInvalidReturnAsyncNullabilityNull, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeInvalidReturnAsyncNullabilityNull = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncNullabilityNull", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnAsyncNullabilityNull( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeInvalidReturnAsyncNullabilityNull, |
| problemMessage: |
| """The value 'null' can't be returned from an async function with return type '${type}' because '${type}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidReturnAsyncNullabilityNullType = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncNullabilityNullType", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from an async function with return type '#type2' because '#type2' is not nullable.""", |
| withArguments: _withArgumentsInvalidReturnAsyncNullabilityNullType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidReturnAsyncNullabilityNullType = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncNullabilityNullType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnAsyncNullabilityNullType( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidReturnAsyncNullabilityNullType, |
| problemMessage: |
| """A value of type '${type}' can't be returned from an async function with return type '${type2}' because '${type2}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateInvalidReturnAsyncPartNullability = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncPartNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from an async function with return type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: _withArgumentsInvalidReturnAsyncPartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeInvalidReturnAsyncPartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "InvalidReturnAsyncPartNullability", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnAsyncPartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeInvalidReturnAsyncPartNullability, |
| problemMessage: |
| """A value of type '${type}' can't be returned from an async function with return type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidReturnNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from a function with return type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: _withArgumentsInvalidReturnNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidReturnNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnNullability", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidReturnNullability, |
| problemMessage: |
| """A value of type '${type}' can't be returned from a function with return type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateInvalidReturnNullabilityNull = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InvalidReturnNullabilityNull", |
| problemMessageTemplate: |
| r"""The value 'null' can't be returned from a function with return type '#type' because '#type' is not nullable.""", |
| withArguments: _withArgumentsInvalidReturnNullabilityNull, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeInvalidReturnNullabilityNull = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "InvalidReturnNullabilityNull", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnNullabilityNull( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeInvalidReturnNullabilityNull, |
| problemMessage: |
| """The value 'null' can't be returned from a function with return type '${type}' because '${type}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateInvalidReturnNullabilityNullType = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnNullabilityNullType", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from a function with return type '#type2' because '#type2' is not nullable.""", |
| withArguments: _withArgumentsInvalidReturnNullabilityNullType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeInvalidReturnNullabilityNullType = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "InvalidReturnNullabilityNullType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnNullabilityNullType( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeInvalidReturnNullabilityNullType, |
| problemMessage: |
| """A value of type '${type}' can't be returned from a function with return type '${type2}' because '${type2}' is not nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateInvalidReturnPartNullability = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "InvalidReturnPartNullability", |
| problemMessageTemplate: |
| r"""A value of type '#type' can't be returned from a function with return type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: _withArgumentsInvalidReturnPartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeInvalidReturnPartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "InvalidReturnPartNullability", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsInvalidReturnPartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeInvalidReturnPartNullability, |
| problemMessage: |
| """A value of type '${type}' can't be returned from a function with return type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropExportInvalidInteropTypeArgument = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropExportInvalidInteropTypeArgument", |
| problemMessageTemplate: |
| r"""Type argument '#type' needs to be a non-JS interop type.""", |
| correctionMessageTemplate: |
| r"""Use a non-JS interop class that uses `@JSExport` instead.""", |
| withArguments: _withArgumentsJsInteropExportInvalidInteropTypeArgument, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropExportInvalidInteropTypeArgument = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropExportInvalidInteropTypeArgument", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropExportInvalidInteropTypeArgument( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropExportInvalidInteropTypeArgument, |
| problemMessage: |
| """Type argument '${type}' needs to be a non-JS interop type.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Use a non-JS interop class that uses `@JSExport` instead.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropExportInvalidTypeArgument = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropExportInvalidTypeArgument", |
| problemMessageTemplate: |
| r"""Type argument '#type' needs to be an interface type.""", |
| correctionMessageTemplate: |
| r"""Use a non-JS interop class that uses `@JSExport` instead.""", |
| withArguments: _withArgumentsJsInteropExportInvalidTypeArgument, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropExportInvalidTypeArgument = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropExportInvalidTypeArgument", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropExportInvalidTypeArgument( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropExportInvalidTypeArgument, |
| problemMessage: |
| """Type argument '${type}' needs to be an interface type.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Use a non-JS interop class that uses `@JSExport` instead.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropExtensionTypeNotInterop = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropExtensionTypeNotInterop", |
| problemMessageTemplate: |
| r"""Extension type '#name' is marked with a '@JS' annotation, but its representation type is not a valid JS interop type: '#type'.""", |
| correctionMessageTemplate: |
| r"""Try declaring a valid JS interop representation type, which may include 'dart:js_interop' types, '@staticInterop' types, 'dart:html' types, or other interop extension types.""", |
| withArguments: _withArgumentsJsInteropExtensionTypeNotInterop, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropExtensionTypeNotInterop = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropExtensionTypeNotInterop", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropExtensionTypeNotInterop( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropExtensionTypeNotInterop, |
| problemMessage: |
| """Extension type '${name}' is marked with a '@JS' annotation, but its representation type is not a valid JS interop type: '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try declaring a valid JS interop representation type, which may include 'dart:js_interop' types, '@staticInterop' types, 'dart:html' types, or other interop extension types.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropFunctionToJSRequiresStaticType = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropFunctionToJSRequiresStaticType", |
| problemMessageTemplate: |
| r"""`Function.toJS` requires a statically known function type, but Type '#type' is not a precise function type, e.g., `void Function()`.""", |
| correctionMessageTemplate: |
| r"""Insert an explicit cast to the expected function type.""", |
| withArguments: _withArgumentsJsInteropFunctionToJSRequiresStaticType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropFunctionToJSRequiresStaticType = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropFunctionToJSRequiresStaticType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropFunctionToJSRequiresStaticType( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropFunctionToJSRequiresStaticType, |
| problemMessage: |
| """`Function.toJS` requires a statically known function type, but Type '${type}' is not a precise function type, e.g., `void Function()`.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Insert an explicit cast to the expected function type.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropIsAInvalidType = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropIsAInvalidType", |
| problemMessageTemplate: |
| r"""Type argument '#type' needs to be an interop 'ExtensionType'.""", |
| correctionMessageTemplate: |
| r"""Use a valid interop extension type as the type argument instead.""", |
| withArguments: _withArgumentsJsInteropIsAInvalidType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropIsAInvalidType = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropIsAInvalidType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropIsAInvalidType( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropIsAInvalidType, |
| problemMessage: |
| """Type argument '${type}' needs to be an interop 'ExtensionType'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Use a valid interop extension type as the type argument instead.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropIsAObjectLiteralType = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropIsAObjectLiteralType", |
| problemMessageTemplate: |
| r"""Type argument '#type' has an object literal constructor. Because 'isA' uses the type's name or '@JS()' rename, this may result in an incorrect type check.""", |
| correctionMessageTemplate: |
| r"""Use 'JSObject' as the type argument instead.""", |
| withArguments: _withArgumentsJsInteropIsAObjectLiteralType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropIsAObjectLiteralType = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropIsAObjectLiteralType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropIsAObjectLiteralType( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropIsAObjectLiteralType, |
| problemMessage: |
| """Type argument '${type}' has an object literal constructor. Because 'isA' uses the type's name or '@JS()' rename, this may result in an incorrect type check.""" + |
| labeler.originMessages, |
| correctionMessage: """Use 'JSObject' as the type argument instead.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, String string, bool isNonNullableByDefault)> |
| templateJsInteropIsAPrimitiveExtensionType = const Template< |
| Message Function( |
| DartType _type, String string, bool isNonNullableByDefault)>( |
| "JsInteropIsAPrimitiveExtensionType", |
| problemMessageTemplate: |
| r"""Type argument '#type' wraps primitive JS type '#string', which is specially handled using 'typeof'.""", |
| correctionMessageTemplate: |
| r"""Use the primitive JS type '#string' as the type argument instead.""", |
| withArguments: _withArgumentsJsInteropIsAPrimitiveExtensionType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, String string, bool isNonNullableByDefault)> |
| codeJsInteropIsAPrimitiveExtensionType = const Code< |
| Message Function( |
| DartType _type, String string, bool isNonNullableByDefault)>( |
| "JsInteropIsAPrimitiveExtensionType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropIsAPrimitiveExtensionType( |
| DartType _type, String string, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (string.isEmpty) throw 'No string provided'; |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropIsAPrimitiveExtensionType, |
| problemMessage: |
| """Type argument '${type}' wraps primitive JS type '${string}', which is specially handled using 'typeof'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Use the primitive JS type '${string}' as the type argument instead.""", |
| arguments: { |
| 'type': _type, |
| 'string': string, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropStaticInteropExternalTypeViolation = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropStaticInteropExternalTypeViolation", |
| problemMessageTemplate: |
| r"""Type '#type' is not a valid type in the signature of 'dart:js_interop' external APIs or APIs converted via 'toJS'.""", |
| correctionMessageTemplate: |
| r"""Use one of these valid types instead: JS types from 'dart:js_interop', '@staticInterop' types, 'dart:html' types when compiling to JS, void, bool, num, double, int, String, extension types that erases to one of these types, or a type parameter that is bound to a static interop or 'dart:html' type.""", |
| withArguments: _withArgumentsJsInteropStaticInteropExternalTypeViolation, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropStaticInteropExternalTypeViolation = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropStaticInteropExternalTypeViolation", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropStaticInteropExternalTypeViolation( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropStaticInteropExternalTypeViolation, |
| problemMessage: |
| """Type '${type}' is not a valid type in the signature of 'dart:js_interop' external APIs or APIs converted via 'toJS'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Use one of these valid types instead: JS types from 'dart:js_interop', '@staticInterop' types, 'dart:html' types when compiling to JS, void, bool, num, double, int, String, extension types that erases to one of these types, or a type parameter that is bound to a static interop or 'dart:html' type.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropStaticInteropMockNotStaticInteropType = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropStaticInteropMockNotStaticInteropType", |
| problemMessageTemplate: |
| r"""Type argument '#type' needs to be a `@staticInterop` type.""", |
| correctionMessageTemplate: r"""Use a `@staticInterop` class instead.""", |
| withArguments: _withArgumentsJsInteropStaticInteropMockNotStaticInteropType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropStaticInteropMockNotStaticInteropType = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropStaticInteropMockNotStaticInteropType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropStaticInteropMockNotStaticInteropType( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropStaticInteropMockNotStaticInteropType, |
| problemMessage: |
| """Type argument '${type}' needs to be a `@staticInterop` type.""" + |
| labeler.originMessages, |
| correctionMessage: """Use a `@staticInterop` class instead.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateJsInteropStaticInteropMockTypeParametersNotAllowed = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropStaticInteropMockTypeParametersNotAllowed", |
| problemMessageTemplate: |
| r"""Type argument '#type' has type parameters that do not match their bound. createStaticInteropMock requires instantiating all type parameters to their bound to ensure mocking conformance.""", |
| correctionMessageTemplate: |
| r"""Remove the type parameter in the type argument or replace it with its bound.""", |
| withArguments: |
| _withArgumentsJsInteropStaticInteropMockTypeParametersNotAllowed, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeJsInteropStaticInteropMockTypeParametersNotAllowed = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "JsInteropStaticInteropMockTypeParametersNotAllowed", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsJsInteropStaticInteropMockTypeParametersNotAllowed( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeJsInteropStaticInteropMockTypeParametersNotAllowed, |
| problemMessage: |
| """Type argument '${type}' has type parameters that do not match their bound. createStaticInteropMock requires instantiating all type parameters to their bound to ensure mocking conformance.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Remove the type parameter in the type argument or replace it with its bound.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateMainWrongParameterType = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "MainWrongParameterType", |
| problemMessageTemplate: |
| r"""The type '#type' of the first parameter of the 'main' method is not a supertype of '#type2'.""", |
| withArguments: _withArgumentsMainWrongParameterType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeMainWrongParameterType = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "MainWrongParameterType", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsMainWrongParameterType( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeMainWrongParameterType, |
| problemMessage: |
| """The type '${type}' of the first parameter of the 'main' method is not a supertype of '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateMainWrongParameterTypeExported = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "MainWrongParameterTypeExported", |
| problemMessageTemplate: |
| r"""The type '#type' of the first parameter of the exported 'main' method is not a supertype of '#type2'.""", |
| withArguments: _withArgumentsMainWrongParameterTypeExported, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeMainWrongParameterTypeExported = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "MainWrongParameterTypeExported", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsMainWrongParameterTypeExported( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeMainWrongParameterTypeExported, |
| problemMessage: |
| """The type '${type}' of the first parameter of the exported 'main' method is not a supertype of '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)> |
| templateMixinApplicationIncompatibleSupertype = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)>( |
| "MixinApplicationIncompatibleSupertype", |
| problemMessageTemplate: |
| r"""'#type' doesn't implement '#type2' so it can't be used with '#type3'.""", |
| withArguments: _withArgumentsMixinApplicationIncompatibleSupertype, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)> |
| codeMixinApplicationIncompatibleSupertype = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| bool isNonNullableByDefault)>( |
| "MixinApplicationIncompatibleSupertype", |
| analyzerCodes: <String>["MIXIN_APPLICATION_NOT_IMPLEMENTED_INTERFACE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsMixinApplicationIncompatibleSupertype(DartType _type, |
| DartType _type2, DartType _type3, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| return new Message( |
| codeMixinApplicationIncompatibleSupertype, |
| problemMessage: |
| """'${type}' doesn't implement '${type2}' so it can't be used with '${type3}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, String name2, DartType _type, |
| bool isNonNullableByDefault)> |
| templateMixinInferenceNoMatchingClass = const Template< |
| Message Function(String name, String name2, DartType _type, |
| bool isNonNullableByDefault)>( |
| "MixinInferenceNoMatchingClass", |
| problemMessageTemplate: |
| r"""Type parameters couldn't be inferred for the mixin '#name' because '#name2' does not implement the mixin's supertype constraint '#type'.""", |
| withArguments: _withArgumentsMixinInferenceNoMatchingClass, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, String name2, DartType _type, |
| bool isNonNullableByDefault)> codeMixinInferenceNoMatchingClass = |
| const Code< |
| Message Function(String name, String name2, DartType _type, |
| bool isNonNullableByDefault)>( |
| "MixinInferenceNoMatchingClass", |
| analyzerCodes: <String>["MIXIN_INFERENCE_NO_POSSIBLE_SUBSTITUTION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsMixinInferenceNoMatchingClass( |
| String name, String name2, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeMixinInferenceNoMatchingClass, |
| problemMessage: |
| """Type parameters couldn't be inferred for the mixin '${name}' because '${name2}' does not implement the mixin's supertype constraint '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'name2': name2, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)> |
| templateNameNotFoundInRecordNameGet = const Template< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)>( |
| "NameNotFoundInRecordNameGet", |
| problemMessageTemplate: |
| r"""Field name #string isn't found in records of type #type.""", |
| withArguments: _withArgumentsNameNotFoundInRecordNameGet, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)> |
| codeNameNotFoundInRecordNameGet = const Code< |
| Message Function( |
| String string, DartType _type, bool isNonNullableByDefault)>( |
| "NameNotFoundInRecordNameGet", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNameNotFoundInRecordNameGet( |
| String string, DartType _type, bool isNonNullableByDefault) { |
| if (string.isEmpty) throw 'No string provided'; |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeNameNotFoundInRecordNameGet, |
| problemMessage: |
| """Field name ${string} isn't found in records of type ${type}.""" + |
| labeler.originMessages, |
| arguments: { |
| 'string': string, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)> |
| templateNonExhaustiveSwitchExpression = const Template< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)>( |
| "NonExhaustiveSwitchExpression", |
| problemMessageTemplate: |
| r"""The type '#type' is not exhaustively matched by the switch cases since it doesn't match '#string'.""", |
| correctionMessageTemplate: |
| r"""Try adding a wildcard pattern or cases that match '#string2'.""", |
| withArguments: _withArgumentsNonExhaustiveSwitchExpression, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)> codeNonExhaustiveSwitchExpression = |
| const Code< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)>( |
| "NonExhaustiveSwitchExpression", |
| analyzerCodes: <String>["NON_EXHAUSTIVE_SWITCH_EXPRESSION"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNonExhaustiveSwitchExpression(DartType _type, |
| String string, String string2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (string.isEmpty) throw 'No string provided'; |
| if (string2.isEmpty) throw 'No string provided'; |
| String type = typeParts.join(); |
| return new Message( |
| codeNonExhaustiveSwitchExpression, |
| problemMessage: |
| """The type '${type}' is not exhaustively matched by the switch cases since it doesn't match '${string}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try adding a wildcard pattern or cases that match '${string2}'.""", |
| arguments: { |
| 'type': _type, |
| 'string': string, |
| 'string2': string2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)> templateNonExhaustiveSwitchStatement = |
| const Template< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)>( |
| "NonExhaustiveSwitchStatement", |
| problemMessageTemplate: |
| r"""The type '#type' is not exhaustively matched by the switch cases since it doesn't match '#string'.""", |
| correctionMessageTemplate: |
| r"""Try adding a default case or cases that match '#string2'.""", |
| withArguments: _withArgumentsNonExhaustiveSwitchStatement, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)> codeNonExhaustiveSwitchStatement = |
| const Code< |
| Message Function(DartType _type, String string, String string2, |
| bool isNonNullableByDefault)>( |
| "NonExhaustiveSwitchStatement", |
| analyzerCodes: <String>["NON_EXHAUSTIVE_SWITCH_STATEMENT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNonExhaustiveSwitchStatement(DartType _type, |
| String string, String string2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (string.isEmpty) throw 'No string provided'; |
| if (string2.isEmpty) throw 'No string provided'; |
| String type = typeParts.join(); |
| return new Message( |
| codeNonExhaustiveSwitchStatement, |
| problemMessage: |
| """The type '${type}' is not exhaustively matched by the switch cases since it doesn't match '${string}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try adding a default case or cases that match '${string2}'.""", |
| arguments: { |
| 'type': _type, |
| 'string': string, |
| 'string2': string2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateNonNullAwareSpreadIsNull = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "NonNullAwareSpreadIsNull", |
| problemMessageTemplate: r"""Can't spread a value with static type '#type'.""", |
| withArguments: _withArgumentsNonNullAwareSpreadIsNull, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeNonNullAwareSpreadIsNull = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "NonNullAwareSpreadIsNull", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNonNullAwareSpreadIsNull( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeNonNullAwareSpreadIsNull, |
| problemMessage: """Can't spread a value with static type '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateNonNullableInNullAware = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "NonNullableInNullAware", |
| problemMessageTemplate: |
| r"""Operand of null-aware operation '#name' has type '#type' which excludes null.""", |
| withArguments: _withArgumentsNonNullableInNullAware, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeNonNullableInNullAware = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "NonNullableInNullAware", |
| severity: Severity.warning, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNonNullableInNullAware( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeNonNullableInNullAware, |
| problemMessage: |
| """Operand of null-aware operation '${name}' has type '${type}' which excludes null.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateNullableExpressionCallError = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "NullableExpressionCallError", |
| problemMessageTemplate: |
| r"""Can't use an expression of type '#type' as a function because it's potentially null.""", |
| correctionMessageTemplate: r"""Try calling using ?.call instead.""", |
| withArguments: _withArgumentsNullableExpressionCallError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeNullableExpressionCallError = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "NullableExpressionCallError", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNullableExpressionCallError( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeNullableExpressionCallError, |
| problemMessage: |
| """Can't use an expression of type '${type}' as a function because it's potentially null.""" + |
| labeler.originMessages, |
| correctionMessage: """Try calling using ?.call instead.""", |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateNullableMethodCallError = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "NullableMethodCallError", |
| problemMessageTemplate: |
| r"""Method '#name' cannot be called on '#type' because it is potentially null.""", |
| correctionMessageTemplate: r"""Try calling using ?. instead.""", |
| withArguments: _withArgumentsNullableMethodCallError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeNullableMethodCallError = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "NullableMethodCallError", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNullableMethodCallError( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeNullableMethodCallError, |
| problemMessage: |
| """Method '${name}' cannot be called on '${type}' because it is potentially null.""" + |
| labeler.originMessages, |
| correctionMessage: """Try calling using ?. instead.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateNullableOperatorCallError = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "NullableOperatorCallError", |
| problemMessageTemplate: |
| r"""Operator '#name' cannot be called on '#type' because it is potentially null.""", |
| withArguments: _withArgumentsNullableOperatorCallError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeNullableOperatorCallError = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "NullableOperatorCallError", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNullableOperatorCallError( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeNullableOperatorCallError, |
| problemMessage: |
| """Operator '${name}' cannot be called on '${type}' because it is potentially null.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateNullablePropertyAccessError = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "NullablePropertyAccessError", |
| problemMessageTemplate: |
| r"""Property '#name' cannot be accessed on '#type' because it is potentially null.""", |
| correctionMessageTemplate: r"""Try accessing using ?. instead.""", |
| withArguments: _withArgumentsNullablePropertyAccessError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeNullablePropertyAccessError = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "NullablePropertyAccessError", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsNullablePropertyAccessError( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeNullablePropertyAccessError, |
| problemMessage: |
| """Property '${name}' cannot be accessed on '${type}' because it is potentially null.""" + |
| labeler.originMessages, |
| correctionMessage: """Try accessing using ?. instead.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateOptionalNonNullableWithoutInitializerError = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "OptionalNonNullableWithoutInitializerError", |
| problemMessageTemplate: |
| r"""The parameter '#name' can't have a value of 'null' because of its type '#type', but the implicit default value is 'null'.""", |
| correctionMessageTemplate: |
| r"""Try adding either an explicit non-'null' default value or the 'required' modifier.""", |
| withArguments: _withArgumentsOptionalNonNullableWithoutInitializerError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeOptionalNonNullableWithoutInitializerError = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "OptionalNonNullableWithoutInitializerError", |
| analyzerCodes: <String>["MISSING_DEFAULT_VALUE_FOR_PARAMETER"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsOptionalNonNullableWithoutInitializerError( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeOptionalNonNullableWithoutInitializerError, |
| problemMessage: |
| """The parameter '${name}' can't have a value of 'null' because of its type '${type}', but the implicit default value is 'null'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try adding either an explicit non-'null' default value or the 'required' modifier.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, String name, bool isNonNullableByDefault)> |
| templateOptionalSuperParameterWithoutInitializer = const Template< |
| Message Function( |
| DartType _type, String name, bool isNonNullableByDefault)>( |
| "OptionalSuperParameterWithoutInitializer", |
| problemMessageTemplate: |
| r"""Type '#type' of the optional super-initializer parameter '#name' doesn't allow 'null', but the parameter doesn't have a default value, and the default value can't be copied from the corresponding parameter of the super constructor.""", |
| withArguments: _withArgumentsOptionalSuperParameterWithoutInitializer, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, String name, bool isNonNullableByDefault)> |
| codeOptionalSuperParameterWithoutInitializer = const Code< |
| Message Function( |
| DartType _type, String name, bool isNonNullableByDefault)>( |
| "OptionalSuperParameterWithoutInitializer", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsOptionalSuperParameterWithoutInitializer( |
| DartType _type, String name, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| String type = typeParts.join(); |
| return new Message( |
| codeOptionalSuperParameterWithoutInitializer, |
| problemMessage: |
| """Type '${type}' of the optional super-initializer parameter '${name}' doesn't allow 'null', but the parameter doesn't have a default value, and the default value can't be copied from the corresponding parameter of the super constructor.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, String name2, DartType _type, |
| DartType _type2, String name3, bool isNonNullableByDefault)> |
| templateOverrideTypeMismatchParameter = const Template< |
| Message Function(String name, String name2, DartType _type, |
| DartType _type2, String name3, bool isNonNullableByDefault)>( |
| "OverrideTypeMismatchParameter", |
| problemMessageTemplate: |
| r"""The parameter '#name' of the method '#name2' has type '#type', which does not match the corresponding type, '#type2', in the overridden method, '#name3'.""", |
| correctionMessageTemplate: |
| r"""Change to a supertype of '#type2', or, for a covariant parameter, a subtype.""", |
| withArguments: _withArgumentsOverrideTypeMismatchParameter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, String name2, DartType _type, |
| DartType _type2, String name3, bool isNonNullableByDefault)> |
| codeOverrideTypeMismatchParameter = const Code< |
| Message Function(String name, String name2, DartType _type, |
| DartType _type2, String name3, bool isNonNullableByDefault)>( |
| "OverrideTypeMismatchParameter", |
| analyzerCodes: <String>["INVALID_METHOD_OVERRIDE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsOverrideTypeMismatchParameter( |
| String name, |
| String name2, |
| DartType _type, |
| DartType _type2, |
| String name3, |
| bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name3.isEmpty) throw 'No name provided'; |
| name3 = demangleMixinApplicationName(name3); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeOverrideTypeMismatchParameter, |
| problemMessage: |
| """The parameter '${name}' of the method '${name2}' has type '${type}', which does not match the corresponding type, '${type2}', in the overridden method, '${name3}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Change to a supertype of '${type2}', or, for a covariant parameter, a subtype.""", |
| arguments: { |
| 'name': name, |
| 'name2': name2, |
| 'type': _type, |
| 'type2': _type2, |
| 'name3': name3, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateOverrideTypeMismatchReturnType = const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "OverrideTypeMismatchReturnType", |
| problemMessageTemplate: |
| r"""The return type of the method '#name' is '#type', which does not match the return type, '#type2', of the overridden method, '#name2'.""", |
| correctionMessageTemplate: r"""Change to a subtype of '#type2'.""", |
| withArguments: _withArgumentsOverrideTypeMismatchReturnType, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeOverrideTypeMismatchReturnType = const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "OverrideTypeMismatchReturnType", |
| analyzerCodes: <String>["INVALID_METHOD_OVERRIDE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsOverrideTypeMismatchReturnType( |
| String name, |
| DartType _type, |
| DartType _type2, |
| String name2, |
| bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeOverrideTypeMismatchReturnType, |
| problemMessage: |
| """The return type of the method '${name}' is '${type}', which does not match the return type, '${type2}', of the overridden method, '${name2}'.""" + |
| labeler.originMessages, |
| correctionMessage: """Change to a subtype of '${type2}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| templateOverrideTypeMismatchSetter = const Template< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "OverrideTypeMismatchSetter", |
| problemMessageTemplate: |
| r"""The field '#name' has type '#type', which does not match the corresponding type, '#type2', in the overridden setter, '#name2'.""", |
| withArguments: _withArgumentsOverrideTypeMismatchSetter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)> |
| codeOverrideTypeMismatchSetter = const Code< |
| Message Function(String name, DartType _type, DartType _type2, |
| String name2, bool isNonNullableByDefault)>( |
| "OverrideTypeMismatchSetter", |
| analyzerCodes: <String>["INVALID_METHOD_OVERRIDE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsOverrideTypeMismatchSetter(String name, DartType _type, |
| DartType _type2, String name2, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeOverrideTypeMismatchSetter, |
| problemMessage: |
| """The field '${name}' has type '${type}', which does not match the corresponding type, '${type2}', in the overridden setter, '${name2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| 'type2': _type2, |
| 'name2': name2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, String name, String name2, |
| DartType _type2, String name3, bool isNonNullableByDefault)> |
| templateOverrideTypeVariablesBoundMismatch = const Template< |
| Message Function(DartType _type, String name, String name2, |
| DartType _type2, String name3, bool isNonNullableByDefault)>( |
| "OverrideTypeVariablesBoundMismatch", |
| problemMessageTemplate: |
| r"""Declared bound '#type' of type variable '#name' of '#name2' doesn't match the bound '#type2' on overridden method '#name3'.""", |
| withArguments: _withArgumentsOverrideTypeVariablesBoundMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, String name, String name2, |
| DartType _type2, String name3, bool isNonNullableByDefault)> |
| codeOverrideTypeVariablesBoundMismatch = const Code< |
| Message Function(DartType _type, String name, String name2, |
| DartType _type2, String name3, bool isNonNullableByDefault)>( |
| "OverrideTypeVariablesBoundMismatch", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsOverrideTypeVariablesBoundMismatch( |
| DartType _type, |
| String name, |
| String name2, |
| DartType _type2, |
| String name3, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| if (name2.isEmpty) throw 'No name provided'; |
| name2 = demangleMixinApplicationName(name2); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| if (name3.isEmpty) throw 'No name provided'; |
| name3 = demangleMixinApplicationName(name3); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeOverrideTypeVariablesBoundMismatch, |
| problemMessage: |
| """Declared bound '${type}' of type variable '${name}' of '${name2}' doesn't match the bound '${type2}' on overridden method '${name3}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'name': name, |
| 'name2': name2, |
| 'type2': _type2, |
| 'name3': name3, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templatePatternTypeMismatchInIrrefutableContext = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "PatternTypeMismatchInIrrefutableContext", |
| problemMessageTemplate: |
| r"""The matched value of type '#type' isn't assignable to the required type '#type2'.""", |
| correctionMessageTemplate: |
| r"""Try changing the required type of the pattern, or the matched value type.""", |
| withArguments: _withArgumentsPatternTypeMismatchInIrrefutableContext, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codePatternTypeMismatchInIrrefutableContext = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "PatternTypeMismatchInIrrefutableContext", |
| analyzerCodes: <String>["PATTERN_TYPE_MISMATCH_IN_IRREFUTABLE_CONTEXT"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsPatternTypeMismatchInIrrefutableContext( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codePatternTypeMismatchInIrrefutableContext, |
| problemMessage: |
| """The matched value of type '${type}' isn't assignable to the required type '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try changing the required type of the pattern, or the matched value type.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateRedirectingFactoryIncompatibleTypeArgument = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "RedirectingFactoryIncompatibleTypeArgument", |
| problemMessageTemplate: r"""The type '#type' doesn't extend '#type2'.""", |
| correctionMessageTemplate: r"""Try using a different type as argument.""", |
| withArguments: _withArgumentsRedirectingFactoryIncompatibleTypeArgument, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeRedirectingFactoryIncompatibleTypeArgument = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "RedirectingFactoryIncompatibleTypeArgument", |
| analyzerCodes: <String>["TYPE_ARGUMENT_NOT_MATCHING_BOUNDS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsRedirectingFactoryIncompatibleTypeArgument( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeRedirectingFactoryIncompatibleTypeArgument, |
| problemMessage: """The type '${type}' doesn't extend '${type2}'.""" + |
| labeler.originMessages, |
| correctionMessage: """Try using a different type as argument.""", |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSpreadElementTypeMismatch = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadElementTypeMismatch", |
| problemMessageTemplate: |
| r"""Can't assign spread elements of type '#type' to collection elements of type '#type2'.""", |
| withArguments: _withArgumentsSpreadElementTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSpreadElementTypeMismatch = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadElementTypeMismatch", |
| analyzerCodes: <String>["LIST_ELEMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadElementTypeMismatch( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSpreadElementTypeMismatch, |
| problemMessage: |
| """Can't assign spread elements of type '${type}' to collection elements of type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSpreadElementTypeMismatchNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadElementTypeMismatchNullability", |
| problemMessageTemplate: |
| r"""Can't assign spread elements of type '#type' to collection elements of type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: _withArgumentsSpreadElementTypeMismatchNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSpreadElementTypeMismatchNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadElementTypeMismatchNullability", |
| analyzerCodes: <String>["LIST_ELEMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadElementTypeMismatchNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSpreadElementTypeMismatchNullability, |
| problemMessage: |
| """Can't assign spread elements of type '${type}' to collection elements of type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateSpreadElementTypeMismatchPartNullability = const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "SpreadElementTypeMismatchPartNullability", |
| problemMessageTemplate: |
| r"""Can't assign spread elements of type '#type' to collection elements of type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: _withArgumentsSpreadElementTypeMismatchPartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeSpreadElementTypeMismatchPartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "SpreadElementTypeMismatchPartNullability", |
| analyzerCodes: <String>["LIST_ELEMENT_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadElementTypeMismatchPartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeSpreadElementTypeMismatchPartNullability, |
| problemMessage: |
| """Can't assign spread elements of type '${type}' to collection elements of type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSpreadMapEntryElementKeyTypeMismatch = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementKeyTypeMismatch", |
| problemMessageTemplate: |
| r"""Can't assign spread entry keys of type '#type' to map entry keys of type '#type2'.""", |
| withArguments: _withArgumentsSpreadMapEntryElementKeyTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSpreadMapEntryElementKeyTypeMismatch = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementKeyTypeMismatch", |
| analyzerCodes: <String>["MAP_KEY_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadMapEntryElementKeyTypeMismatch( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSpreadMapEntryElementKeyTypeMismatch, |
| problemMessage: |
| """Can't assign spread entry keys of type '${type}' to map entry keys of type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSpreadMapEntryElementKeyTypeMismatchNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementKeyTypeMismatchNullability", |
| problemMessageTemplate: |
| r"""Can't assign spread entry keys of type '#type' to map entry keys of type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: _withArgumentsSpreadMapEntryElementKeyTypeMismatchNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSpreadMapEntryElementKeyTypeMismatchNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementKeyTypeMismatchNullability", |
| analyzerCodes: <String>["MAP_KEY_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadMapEntryElementKeyTypeMismatchNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSpreadMapEntryElementKeyTypeMismatchNullability, |
| problemMessage: |
| """Can't assign spread entry keys of type '${type}' to map entry keys of type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateSpreadMapEntryElementKeyTypeMismatchPartNullability = |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementKeyTypeMismatchPartNullability", |
| problemMessageTemplate: |
| r"""Can't assign spread entry keys of type '#type' to map entry keys of type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: |
| _withArgumentsSpreadMapEntryElementKeyTypeMismatchPartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeSpreadMapEntryElementKeyTypeMismatchPartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementKeyTypeMismatchPartNullability", |
| analyzerCodes: <String>["MAP_KEY_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadMapEntryElementKeyTypeMismatchPartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeSpreadMapEntryElementKeyTypeMismatchPartNullability, |
| problemMessage: |
| """Can't assign spread entry keys of type '${type}' to map entry keys of type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSpreadMapEntryElementValueTypeMismatch = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementValueTypeMismatch", |
| problemMessageTemplate: |
| r"""Can't assign spread entry values of type '#type' to map entry values of type '#type2'.""", |
| withArguments: _withArgumentsSpreadMapEntryElementValueTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSpreadMapEntryElementValueTypeMismatch = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementValueTypeMismatch", |
| analyzerCodes: <String>["MAP_VALUE_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadMapEntryElementValueTypeMismatch( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSpreadMapEntryElementValueTypeMismatch, |
| problemMessage: |
| """Can't assign spread entry values of type '${type}' to map entry values of type '${type2}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSpreadMapEntryElementValueTypeMismatchNullability = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementValueTypeMismatchNullability", |
| problemMessageTemplate: |
| r"""Can't assign spread entry values of type '#type' to map entry values of type '#type2' because '#type' is nullable and '#type2' isn't.""", |
| withArguments: |
| _withArgumentsSpreadMapEntryElementValueTypeMismatchNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSpreadMapEntryElementValueTypeMismatchNullability = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementValueTypeMismatchNullability", |
| analyzerCodes: <String>["MAP_VALUE_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadMapEntryElementValueTypeMismatchNullability( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSpreadMapEntryElementValueTypeMismatchNullability, |
| problemMessage: |
| """Can't assign spread entry values of type '${type}' to map entry values of type '${type2}' because '${type}' is nullable and '${type2}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| templateSpreadMapEntryElementValueTypeMismatchPartNullability = |
| const Template< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementValueTypeMismatchPartNullability", |
| problemMessageTemplate: |
| r"""Can't assign spread entry values of type '#type' to map entry values of type '#type2' because '#type3' is nullable and '#type4' isn't.""", |
| withArguments: |
| _withArgumentsSpreadMapEntryElementValueTypeMismatchPartNullability, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)> |
| codeSpreadMapEntryElementValueTypeMismatchPartNullability = const Code< |
| Message Function(DartType _type, DartType _type2, DartType _type3, |
| DartType _type4, bool isNonNullableByDefault)>( |
| "SpreadMapEntryElementValueTypeMismatchPartNullability", |
| analyzerCodes: <String>["MAP_VALUE_TYPE_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadMapEntryElementValueTypeMismatchPartNullability( |
| DartType _type, |
| DartType _type2, |
| DartType _type3, |
| DartType _type4, |
| bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| List<Object> type3Parts = labeler.labelType(_type3); |
| List<Object> type4Parts = labeler.labelType(_type4); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| String type3 = type3Parts.join(); |
| String type4 = type4Parts.join(); |
| return new Message( |
| codeSpreadMapEntryElementValueTypeMismatchPartNullability, |
| problemMessage: |
| """Can't assign spread entry values of type '${type}' to map entry values of type '${type2}' because '${type3}' is nullable and '${type4}' isn't.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| 'type3': _type3, |
| 'type4': _type4, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateSpreadMapEntryTypeMismatch = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "SpreadMapEntryTypeMismatch", |
| problemMessageTemplate: |
| r"""Unexpected type '#type' of a map spread entry. Expected 'dynamic' or a Map.""", |
| withArguments: _withArgumentsSpreadMapEntryTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeSpreadMapEntryTypeMismatch = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "SpreadMapEntryTypeMismatch", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadMapEntryTypeMismatch( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeSpreadMapEntryTypeMismatch, |
| problemMessage: |
| """Unexpected type '${type}' of a map spread entry. Expected 'dynamic' or a Map.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateSpreadTypeMismatch = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "SpreadTypeMismatch", |
| problemMessageTemplate: |
| r"""Unexpected type '#type' of a spread. Expected 'dynamic' or an Iterable.""", |
| withArguments: _withArgumentsSpreadTypeMismatch, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeSpreadTypeMismatch = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "SpreadTypeMismatch", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSpreadTypeMismatch( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeSpreadTypeMismatch, |
| problemMessage: |
| """Unexpected type '${type}' of a spread. Expected 'dynamic' or an Iterable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSuperBoundedHint = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SuperBoundedHint", |
| problemMessageTemplate: |
| r"""If you want '#type' to be a super-bounded type, note that the inverted type '#type2' must then satisfy its bounds, which it does not.""", |
| withArguments: _withArgumentsSuperBoundedHint, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSuperBoundedHint = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SuperBoundedHint", |
| severity: Severity.context, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSuperBoundedHint( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSuperBoundedHint, |
| problemMessage: |
| """If you want '${type}' to be a super-bounded type, note that the inverted type '${type2}' must then satisfy its bounds, which it does not.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateSuperExtensionTypeIsIllegalAliased = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SuperExtensionTypeIsIllegalAliased", |
| problemMessageTemplate: |
| r"""The type '#name' which is an alias of '#type' can't be implemented by an extension type.""", |
| withArguments: _withArgumentsSuperExtensionTypeIsIllegalAliased, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeSuperExtensionTypeIsIllegalAliased = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SuperExtensionTypeIsIllegalAliased", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSuperExtensionTypeIsIllegalAliased( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeSuperExtensionTypeIsIllegalAliased, |
| problemMessage: |
| """The type '${name}' which is an alias of '${type}' can't be implemented by an extension type.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateSuperExtensionTypeIsNullableAliased = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SuperExtensionTypeIsNullableAliased", |
| problemMessageTemplate: |
| r"""The type '#name' which is an alias of '#type' can't be implemented by an extension type because it is nullable.""", |
| withArguments: _withArgumentsSuperExtensionTypeIsNullableAliased, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeSuperExtensionTypeIsNullableAliased = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SuperExtensionTypeIsNullableAliased", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSuperExtensionTypeIsNullableAliased( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeSuperExtensionTypeIsNullableAliased, |
| problemMessage: |
| """The type '${name}' which is an alias of '${type}' can't be implemented by an extension type because it is nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateSupertypeIsIllegalAliased = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SupertypeIsIllegalAliased", |
| problemMessageTemplate: |
| r"""The type '#name' which is an alias of '#type' can't be used as supertype.""", |
| withArguments: _withArgumentsSupertypeIsIllegalAliased, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeSupertypeIsIllegalAliased = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SupertypeIsIllegalAliased", |
| analyzerCodes: <String>["EXTENDS_NON_CLASS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSupertypeIsIllegalAliased( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeSupertypeIsIllegalAliased, |
| problemMessage: |
| """The type '${name}' which is an alias of '${type}' can't be used as supertype.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateSupertypeIsNullableAliased = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SupertypeIsNullableAliased", |
| problemMessageTemplate: |
| r"""The type '#name' which is an alias of '#type' can't be used as supertype because it is nullable.""", |
| withArguments: _withArgumentsSupertypeIsNullableAliased, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeSupertypeIsNullableAliased = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "SupertypeIsNullableAliased", |
| analyzerCodes: <String>["EXTENDS_NON_CLASS"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSupertypeIsNullableAliased( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeSupertypeIsNullableAliased, |
| problemMessage: |
| """The type '${name}' which is an alias of '${type}' can't be used as supertype because it is nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSwitchExpressionNotAssignable = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SwitchExpressionNotAssignable", |
| problemMessageTemplate: |
| r"""Type '#type' of the switch expression isn't assignable to the type '#type2' of this case expression.""", |
| withArguments: _withArgumentsSwitchExpressionNotAssignable, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSwitchExpressionNotAssignable = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SwitchExpressionNotAssignable", |
| analyzerCodes: <String>["SWITCH_EXPRESSION_NOT_ASSIGNABLE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSwitchExpressionNotAssignable( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSwitchExpressionNotAssignable, |
| problemMessage: |
| """Type '${type}' of the switch expression isn't assignable to the type '${type2}' of this case expression.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| templateSwitchExpressionNotSubtype = const Template< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SwitchExpressionNotSubtype", |
| problemMessageTemplate: |
| r"""Type '#type' of the case expression is not a subtype of type '#type2' of this switch expression.""", |
| withArguments: _withArgumentsSwitchExpressionNotSubtype, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)> |
| codeSwitchExpressionNotSubtype = const Code< |
| Message Function( |
| DartType _type, DartType _type2, bool isNonNullableByDefault)>( |
| "SwitchExpressionNotSubtype", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsSwitchExpressionNotSubtype( |
| DartType _type, DartType _type2, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| List<Object> type2Parts = labeler.labelType(_type2); |
| String type = typeParts.join(); |
| String type2 = type2Parts.join(); |
| return new Message( |
| codeSwitchExpressionNotSubtype, |
| problemMessage: |
| """Type '${type}' of the case expression is not a subtype of type '${type2}' of this switch expression.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| 'type2': _type2, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template<Message Function(DartType _type, bool isNonNullableByDefault)> |
| templateThrowingNotAssignableToObjectError = const Template< |
| Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ThrowingNotAssignableToObjectError", |
| problemMessageTemplate: |
| r"""Can't throw a value of '#type' since it is neither dynamic nor non-nullable.""", |
| withArguments: _withArgumentsThrowingNotAssignableToObjectError, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)> |
| codeThrowingNotAssignableToObjectError = |
| const Code<Message Function(DartType _type, bool isNonNullableByDefault)>( |
| "ThrowingNotAssignableToObjectError", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsThrowingNotAssignableToObjectError( |
| DartType _type, bool isNonNullableByDefault) { |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeThrowingNotAssignableToObjectError, |
| problemMessage: |
| """Can't throw a value of '${type}' since it is neither dynamic nor non-nullable.""" + |
| labeler.originMessages, |
| arguments: { |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateUndefinedExtensionGetter = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionGetter", |
| problemMessageTemplate: |
| r"""The getter '#name' isn't defined for the extension '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the name to the name of an existing getter, or defining a getter or field named '#name'.""", |
| withArguments: _withArgumentsUndefinedExtensionGetter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeUndefinedExtensionGetter = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionGetter", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedExtensionGetter( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedExtensionGetter, |
| problemMessage: |
| """The getter '${name}' isn't defined for the extension '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the name to the name of an existing getter, or defining a getter or field named '${name}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateUndefinedExtensionMethod = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionMethod", |
| problemMessageTemplate: |
| r"""The method '#name' isn't defined for the extension '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the name to the name of an existing method, or defining a method name '#name'.""", |
| withArguments: _withArgumentsUndefinedExtensionMethod, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeUndefinedExtensionMethod = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionMethod", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedExtensionMethod( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedExtensionMethod, |
| problemMessage: |
| """The method '${name}' isn't defined for the extension '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the name to the name of an existing method, or defining a method name '${name}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateUndefinedExtensionOperator = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionOperator", |
| problemMessageTemplate: |
| r"""The operator '#name' isn't defined for the extension '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the operator to an existing operator, or defining a '#name' operator.""", |
| withArguments: _withArgumentsUndefinedExtensionOperator, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeUndefinedExtensionOperator = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionOperator", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedExtensionOperator( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedExtensionOperator, |
| problemMessage: |
| """The operator '${name}' isn't defined for the extension '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the operator to an existing operator, or defining a '${name}' operator.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateUndefinedExtensionSetter = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionSetter", |
| problemMessageTemplate: |
| r"""The setter '#name' isn't defined for the extension '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the name to the name of an existing setter, or defining a setter or field named '#name'.""", |
| withArguments: _withArgumentsUndefinedExtensionSetter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeUndefinedExtensionSetter = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedExtensionSetter", |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedExtensionSetter( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedExtensionSetter, |
| problemMessage: |
| """The setter '${name}' isn't defined for the extension '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the name to the name of an existing setter, or defining a setter or field named '${name}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> templateUndefinedGetter = const Template< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedGetter", |
| problemMessageTemplate: |
| r"""The getter '#name' isn't defined for the class '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the name to the name of an existing getter, or defining a getter or field named '#name'.""", |
| withArguments: _withArgumentsUndefinedGetter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeUndefinedGetter = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedGetter", |
| analyzerCodes: <String>["UNDEFINED_GETTER"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedGetter( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedGetter, |
| problemMessage: |
| """The getter '${name}' isn't defined for the class '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the name to the name of an existing getter, or defining a getter or field named '${name}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> templateUndefinedMethod = const Template< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedMethod", |
| problemMessageTemplate: |
| r"""The method '#name' isn't defined for the class '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the name to the name of an existing method, or defining a method named '#name'.""", |
| withArguments: _withArgumentsUndefinedMethod, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeUndefinedMethod = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedMethod", |
| analyzerCodes: <String>["UNDEFINED_METHOD"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedMethod( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedMethod, |
| problemMessage: |
| """The method '${name}' isn't defined for the class '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the name to the name of an existing method, or defining a method named '${name}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateUndefinedOperator = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedOperator", |
| problemMessageTemplate: |
| r"""The operator '#name' isn't defined for the class '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the operator to an existing operator, or defining a '#name' operator.""", |
| withArguments: _withArgumentsUndefinedOperator, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeUndefinedOperator = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedOperator", |
| analyzerCodes: <String>["UNDEFINED_METHOD"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedOperator( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedOperator, |
| problemMessage: |
| """The operator '${name}' isn't defined for the class '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the operator to an existing operator, or defining a '${name}' operator.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> templateUndefinedSetter = const Template< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedSetter", |
| problemMessageTemplate: |
| r"""The setter '#name' isn't defined for the class '#type'.""", |
| correctionMessageTemplate: |
| r"""Try correcting the name to the name of an existing setter, or defining a setter or field named '#name'.""", |
| withArguments: _withArgumentsUndefinedSetter, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function(String name, DartType _type, |
| bool isNonNullableByDefault)> codeUndefinedSetter = const Code< |
| Message Function(String name, DartType _type, bool isNonNullableByDefault)>( |
| "UndefinedSetter", |
| analyzerCodes: <String>["UNDEFINED_SETTER"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsUndefinedSetter( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeUndefinedSetter, |
| problemMessage: |
| """The setter '${name}' isn't defined for the class '${type}'.""" + |
| labeler.originMessages, |
| correctionMessage: |
| """Try correcting the name to the name of an existing setter, or defining a setter or field named '${name}'.""", |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| templateWrongTypeParameterVarianceInSuperinterface = const Template< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "WrongTypeParameterVarianceInSuperinterface", |
| problemMessageTemplate: |
| r"""'#name' can't be used contravariantly or invariantly in '#type'.""", |
| withArguments: _withArgumentsWrongTypeParameterVarianceInSuperinterface, |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)> |
| codeWrongTypeParameterVarianceInSuperinterface = const Code< |
| Message Function( |
| String name, DartType _type, bool isNonNullableByDefault)>( |
| "WrongTypeParameterVarianceInSuperinterface", |
| analyzerCodes: <String>["WRONG_TYPE_PARAMETER_VARIANCE_IN_SUPERINTERFACE"], |
| ); |
| |
| // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE. |
| Message _withArgumentsWrongTypeParameterVarianceInSuperinterface( |
| String name, DartType _type, bool isNonNullableByDefault) { |
| if (name.isEmpty) throw 'No name provided'; |
| name = demangleMixinApplicationName(name); |
| TypeLabeler labeler = new TypeLabeler(isNonNullableByDefault); |
| List<Object> typeParts = labeler.labelType(_type); |
| String type = typeParts.join(); |
| return new Message( |
| codeWrongTypeParameterVarianceInSuperinterface, |
| problemMessage: |
| """'${name}' can't be used contravariantly or invariantly in '${type}'.""" + |
| labeler.originMessages, |
| arguments: { |
| 'name': name, |
| 'type': _type, |
| }, |
| ); |
| } |