From fbbe5f99626522514343b5a7b2dc59f933e75f4f Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Fri, 5 Jun 2020 15:34:00 -0700 Subject: [PATCH 01/10] Add more information to error messages --- lib/src/builder/codegen/util.dart | 5 +++-- .../parsing/declarations_from_members.dart | 17 ++++++++++------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/lib/src/builder/codegen/util.dart b/lib/src/builder/codegen/util.dart index b573a6f39..069d07820 100644 --- a/lib/src/builder/codegen/util.dart +++ b/lib/src/builder/codegen/util.dart @@ -58,8 +58,9 @@ String getAccessorKeyNamespace(TypedMapNames names, annotations.TypedMap meta) { String generatedMixinWarningCommentLine(TypedMapNames mixinNames, {@required bool isProps}) { final value = '// If this generated mixin is undefined, it\'s likely because' ' ${mixinNames.consumerName} is not a valid `mixin`-based ${isProps ? 'props' : 'state'} mixin,' - ' or because it is but the generated mixin was not exported.' - ' Check the declaration of ${mixinNames.consumerName}.\n'; + ' or because it is but the generated mixin is not be imported.' + ' Check the declaration of ${mixinNames.consumerName}, ' + ' and check that ${mixinNames.generatedMixinName} is exported/imported properly.\n'; assert(value.endsWith('\n')); diff --git a/lib/src/builder/parsing/declarations_from_members.dart b/lib/src/builder/parsing/declarations_from_members.dart index a8957f110..8cbf5229d 100644 --- a/lib/src/builder/parsing/declarations_from_members.dart +++ b/lib/src/builder/parsing/declarations_from_members.dart @@ -360,26 +360,29 @@ Iterable getBoilerplateDeclarations( } } +const _ensureMatchingNames = 'If all the correct boilerplate members seem to be present, ' + 'ensure that they all have matching names (e.g., "Foo" in Foo/FooProps/FooState/FooComponent).'; + const errorStateOnly = 'Could not find matching factory, props class, and component class in this file;' - ' these are required to use UiState.'; + ' these are required to use UiState. $_ensureMatchingNames'; const errorFactoryOnly = 'Could not find matching props class in this file;' ' this is required to declare a props map view or function component,' - ' and a component class is also required to declare a class-based component.'; + ' and a component class is also required to declare a class-based component. $_ensureMatchingNames'; const errorPropsClassOnly = 'Could not find matching factory in this file;' ' this is required to declare a props map view or function component,' - ' and a component class is also required to declare a class-based component.'; + ' and a component class is also required to declare a class-based component. $_ensureMatchingNames'; const errorComponentClassOnly = 'Could not find matching factory and props class in this file;' - ' these are required to declare a class-based component.'; + ' these are required to declare a class-based component. $_ensureMatchingNames'; const errorNoFactory = 'Could not find a matching factory in this file;' - ' this is required to declare a component or props map view.'; + ' this is required to declare a component or props map view. $_ensureMatchingNames'; const errorNoProps = 'Could not find a matching props class in this file;' - ' this is required to declare a component or props map view.'; + ' this is required to declare a component or props map view. $_ensureMatchingNames'; const errorNoComponent = 'Could not find a matching component class in this file;' - ' this is required to declare a class-based component.'; + ' this is required to declare a class-based component. $_ensureMatchingNames'; From cbcb415935abb907e48de33c1c71e8dee14c5ad7 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Fri, 5 Jun 2020 15:34:44 -0700 Subject: [PATCH 02/10] Use node names for most spans to reduce noise in error logs and IDE analysis --- lib/src/builder/parsing/declarations.dart | 8 ++++---- lib/src/builder/parsing/declarations_from_members.dart | 8 ++++---- lib/src/builder/parsing/members/component.dart | 4 ++-- lib/src/builder/parsing/members/factory.dart | 2 +- lib/src/builder/parsing/members/props_and_state.dart | 6 +++--- .../builder/parsing/members/props_and_state_mixins.dart | 4 ++-- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/lib/src/builder/parsing/declarations.dart b/lib/src/builder/parsing/declarations.dart index 75432044f..182829887 100644 --- a/lib/src/builder/parsing/declarations.dart +++ b/lib/src/builder/parsing/declarations.dart @@ -58,7 +58,7 @@ abstract class BoilerplateDeclaration { if (version == null) { // This should almost never happen. errorCollector.addError( - 'Could not determine boilerplate version.', errorCollector.spanFor(_members.first.node)); + 'Could not determine boilerplate version.', errorCollector.spanFor(_members.first.name)); return; } @@ -106,17 +106,17 @@ class LegacyClassComponentDeclaration extends BoilerplateDeclaration { if (!component.node.hasAnnotationWithNames({'Component', 'Component2'})) { errorCollector.addError( 'Legacy boilerplate components must be annotated with `@Component()` or `@Component2()`.', - errorCollector.spanFor(component.node)); + errorCollector.spanFor(component.name)); } if (!props.node.hasAnnotationWithNames({'Props'})) { errorCollector.addError('Legacy boilerplate props classes must be annotated with `@Props()`.', - errorCollector.spanFor(props.node)); + errorCollector.spanFor(props.name)); } if (state != null && !state.node.hasAnnotationWithNames({'State'})) { errorCollector.addError('Legacy boilerplate state classes must be annotated with `@State()`.', - errorCollector.spanFor(state.node)); + errorCollector.spanFor(state.name)); } } } diff --git a/lib/src/builder/parsing/declarations_from_members.dart b/lib/src/builder/parsing/declarations_from_members.dart index 8cbf5229d..308ce070d 100644 --- a/lib/src/builder/parsing/declarations_from_members.dart +++ b/lib/src/builder/parsing/declarations_from_members.dart @@ -321,7 +321,7 @@ Iterable getBoilerplateDeclarations( if (nonNullFactoryPropsOrComponents.isEmpty) { assert(stateClass != null); if (resolveVersion([stateClass]).shouldGenerate) { - errorCollector.addError(errorStateOnly, errorCollector.spanFor(stateClass.node)); + errorCollector.addError(errorStateOnly, errorCollector.spanFor(stateClass.name)); } continue; } @@ -330,7 +330,7 @@ Iterable getBoilerplateDeclarations( switch (nonNullFactoryPropsOrComponents.length) { case 1: final single = nonNullFactoryPropsOrComponents.single; - final span = errorCollector.spanFor(single.node); + final span = errorCollector.spanFor(single.name); if (single == factory) { errorCollector.addError(errorFactoryOnly, span); } else if (single == propsClass) { @@ -340,7 +340,7 @@ Iterable getBoilerplateDeclarations( } continue; case 2: - final span = errorCollector.spanFor((factory ?? propsClass).node); + final span = errorCollector.spanFor((factory ?? propsClass).name); if (factory == null) { errorCollector.addError(errorNoFactory, span); } else if (propsClass == null) { @@ -355,7 +355,7 @@ Iterable getBoilerplateDeclarations( // General case (should be rare if not impossible) for (final member in group) { errorCollector.addError( - 'Mismatched boilerplate member found', errorCollector.spanFor(member.node)); + 'Mismatched boilerplate member found', errorCollector.spanFor(member.name)); } } } diff --git a/lib/src/builder/parsing/members/component.dart b/lib/src/builder/parsing/members/component.dart index 998ab0e17..2a2b8d64a 100644 --- a/lib/src/builder/parsing/members/component.dart +++ b/lib/src/builder/parsing/members/component.dart @@ -115,7 +115,7 @@ class BoilerplateComponent extends BoilerplateMember { // This is a warning since emitting an error would break existing code that's doing this. errorCollector.addWarning( 'Components should not add their own implementations of ${member.name.name}.', - errorCollector.spanFor(member)); + errorCollector.spanFor(member.name)); }); // Ensure that Component2 declarations do not use legacy lifecycle methods. @@ -136,7 +136,7 @@ class BoilerplateComponent extends BoilerplateMember { $helpMessage See https://reactjs.org/docs/react-component.html#legacy-lifecycle-methods for additional information. - '''), errorCollector.spanFor(method)); + '''), errorCollector.spanFor(method.name)); } }); } diff --git a/lib/src/builder/parsing/members/factory.dart b/lib/src/builder/parsing/members/factory.dart index 3e29cc036..dcf9e0847 100644 --- a/lib/src/builder/parsing/members/factory.dart +++ b/lib/src/builder/parsing/members/factory.dart @@ -61,7 +61,7 @@ class BoilerplateFactory extends BoilerplateMember { if (!hasFactoryAnnotation) { errorCollector.addError( 'Legacy boilerplate factories must be annotated with `@Factory()`.', - errorCollector.spanFor(node)); + errorCollector.spanFor(name)); } break; diff --git a/lib/src/builder/parsing/members/props_and_state.dart b/lib/src/builder/parsing/members/props_and_state.dart index 7a1585038..ad54c4deb 100644 --- a/lib/src/builder/parsing/members/props_and_state.dart +++ b/lib/src/builder/parsing/members/props_and_state.dart @@ -74,7 +74,7 @@ abstract class BoilerplatePropsOrState extends BoilerplateTypedMapMember if (nodeHelper.superclass?.nameWithoutPrefix != propsOrStateBaseClassString) { errorCollector.addError( '$propsOrStateClassString implementations must extend directly from $propsOrStateBaseClassString', - errorCollector.spanFor(nodeHelper.superclass ?? node)); + errorCollector.spanFor(nodeHelper.superclass ?? node.name)); } if (node is ClassDeclaration && !node.members.every(isStaticMember)) { @@ -100,7 +100,7 @@ abstract class BoilerplatePropsOrState extends BoilerplateTypedMapMember if (companion == null) { // Don't emit this and the prefix error. if (node.name.name.startsWith(privateSourcePrefix)) { - errorCollector.addError('Should have companion class', errorCollector.spanFor(node)); + errorCollector.addError('Should have companion class', errorCollector.spanFor(node.name)); } } else { validateMetaField(companion, propsOrStateMetaStructName, errorCollector); @@ -128,7 +128,7 @@ abstract class BoilerplatePropsOrState extends BoilerplateTypedMapMember errorCollector.addError( 'The class `${node.name.name}` does not start with `$privateSourcePrefix`. All Props, State, ' 'AbstractProps, and AbstractState classes should begin with `$privateSourcePrefix` on Dart 2', - errorCollector.spanFor(node)); + errorCollector.spanFor(node.name)); } } } diff --git a/lib/src/builder/parsing/members/props_and_state_mixins.dart b/lib/src/builder/parsing/members/props_and_state_mixins.dart index 7c3eaeaa9..40f52cf94 100644 --- a/lib/src/builder/parsing/members/props_and_state_mixins.dart +++ b/lib/src/builder/parsing/members/props_and_state_mixins.dart @@ -64,14 +64,14 @@ abstract class BoilerplatePropsOrStateMixin extends BoilerplateTypedMapMember errorCollector.addError( 'Legacy boilerplate ${propsOrStateMixinString}s must be annotated with ' '`@$propsOrStateMixinAnnotationName()`', - errorCollector.spanFor(node)); + errorCollector.spanFor(node.name)); } if (!node.hasAbstractGetter('Map', propsOrStateString)) { errorCollector.addError( '$propsOrStateMixinString classes must declare an abstract $propsOrStateString getter `Map get $propsOrStateString;` ' 'so that they can be statically analyzed properly.', - errorCollector.spanFor(node)); + errorCollector.spanFor(node.name)); } } From a5a47e8efeb100263b4ee4393db4141865efb88e Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Mon, 24 Aug 2020 17:55:06 -0700 Subject: [PATCH 03/10] Improve runtime error message for component with mismatched state --- lib/src/component_declaration/builder_helpers.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/src/component_declaration/builder_helpers.dart b/lib/src/component_declaration/builder_helpers.dart index 4faf70fb0..5b408f20e 100644 --- a/lib/src/component_declaration/builder_helpers.dart +++ b/lib/src/component_declaration/builder_helpers.dart @@ -185,9 +185,10 @@ class IllegalInstantiationError extends Error { abstract class GeneratedErrorMessages { static const String typedStateFactory = '\n\n' - 'This error may be due to your `UiState` class not being annotated with `@State()`,\n' - 'or because you are extending a stateful component without redeclaring your own `@State()`, like so:\n\n' - ' @State()\n'; + 'This error may be due to your state not being picked up by the builder,' + ' or because you are extending a stateful component without redeclaring your own state.' + '\nDouble-check that your component has a state mixin and/or class and that its name matches' + ' that of the factory/props/component.'; static const String component1AnnotationOnComponent2 = '\n\n' 'This error may be due to using @Component() instead of @Component2() on your component extending from UiComponent2.'; From 75f3a058efa67b4ab6084d60b8212a2e15eee529 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Wed, 16 Sep 2020 11:52:37 -0700 Subject: [PATCH 04/10] Fix extra space --- lib/src/builder/codegen/util.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/builder/codegen/util.dart b/lib/src/builder/codegen/util.dart index 069d07820..5dd0f91b4 100644 --- a/lib/src/builder/codegen/util.dart +++ b/lib/src/builder/codegen/util.dart @@ -59,7 +59,7 @@ String generatedMixinWarningCommentLine(TypedMapNames mixinNames, {@required boo final value = '// If this generated mixin is undefined, it\'s likely because' ' ${mixinNames.consumerName} is not a valid `mixin`-based ${isProps ? 'props' : 'state'} mixin,' ' or because it is but the generated mixin is not be imported.' - ' Check the declaration of ${mixinNames.consumerName}, ' + ' Check the declaration of ${mixinNames.consumerName},' ' and check that ${mixinNames.generatedMixinName} is exported/imported properly.\n'; assert(value.endsWith('\n')); From 8d12008c62f50a8091e165573002a894313e5ea5 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Wed, 16 Sep 2020 11:53:55 -0700 Subject: [PATCH 05/10] Improve error message for factory to mention generated config --- lib/src/builder/parsing/ast_util.dart | 4 +++- lib/src/builder/parsing/members.dart | 1 + lib/src/builder/parsing/members/factory.dart | 15 ++++++++++++--- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/lib/src/builder/parsing/ast_util.dart b/lib/src/builder/parsing/ast_util.dart index 5fd91688e..97faf70ad 100644 --- a/lib/src/builder/parsing/ast_util.dart +++ b/lib/src/builder/parsing/ast_util.dart @@ -16,6 +16,7 @@ import 'package:analyzer/dart/ast/ast.dart'; import 'package:analyzer/dart/ast/syntactic_entity.dart'; import 'package:analyzer/dart/ast/token.dart'; import 'package:analyzer/dart/ast/visitor.dart'; +import 'package:over_react/src/builder/codegen/names.dart'; import 'package:source_span/source_span.dart'; import 'package:transformer_utils/transformer_utils.dart'; @@ -44,9 +45,10 @@ extension InitializerHelperTopLevel on TopLevelVariableDeclaration { /// Returns whether or not there is a generated config being used. bool get usesAGeneratedConfig { + final generatedConfigName = FactoryNames(firstVariable.name.name).configName; return firstInitializer != null && anyDescendantIdentifiers(firstInitializer, (identifier) { - return identifier.nameWithoutPrefix == '\$${firstVariable.name.name}Config'; + return identifier.nameWithoutPrefix == generatedConfigName; }); } } diff --git a/lib/src/builder/parsing/members.dart b/lib/src/builder/parsing/members.dart index 78d2cfbdc..a21bcf81d 100644 --- a/lib/src/builder/parsing/members.dart +++ b/lib/src/builder/parsing/members.dart @@ -14,6 +14,7 @@ import 'package:analyzer/dart/ast/ast.dart'; import 'package:meta/meta.dart'; +import 'package:over_react/src/builder/codegen/names.dart'; import 'package:over_react/src/component_declaration/annotations.dart' as annotations; import 'package:over_react/src/util/pretty_print.dart'; import 'package:over_react/src/util/string_util.dart'; diff --git a/lib/src/builder/parsing/members/factory.dart b/lib/src/builder/parsing/members/factory.dart index a198ff32c..c9bdeb8b4 100644 --- a/lib/src/builder/parsing/members/factory.dart +++ b/lib/src/builder/parsing/members/factory.dart @@ -84,7 +84,10 @@ class BoilerplateFactory extends BoilerplateMember { final variable = node.variables.variables.first; final factoryName = variable.name.name; - final generatedFactoryName = '$privateSourcePrefix$factoryName'; + + final names = FactoryNames(factoryName); + final generatedFactoryName = names.implName; + final generatedConfigName = names.configName; final initializer = variable.initializer; final referencesGeneratedFactory = initializer != null && @@ -93,8 +96,14 @@ class BoilerplateFactory extends BoilerplateMember { if (!referencesGeneratedFactory && !shouldGenerateConfig) { errorCollector.addError( - 'Factory variables are stubs for the generated factories, and must ' - 'be initialized with or otherwise reference the generated factory. Should be: `$factoryName = $generatedFactoryName`', + 'Factory variables are stubs for generated code, and must' + ' be initialized with an expression containing either ' + ' the generated factory ($generatedFactoryName) or' + ' the generated factory config ($generatedConfigName).' + '\nExamples:' + '\n\n $factoryName = $generatedFactoryName;' + '\n\n $factoryName = connect(...)($generatedFactoryName);' + '\n\n $factoryName = uiFunction((props) { ... }, $generatedConfigName);', errorCollector.spanFor(variable)); } } From 56a92469f18e9d3007d4c30896f4fec3d2662340 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Fri, 18 Sep 2020 11:24:23 -0700 Subject: [PATCH 06/10] Fix typo in message, add more context to runtime message --- lib/src/builder/codegen/util.dart | 2 +- lib/src/component_declaration/builder_helpers.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/builder/codegen/util.dart b/lib/src/builder/codegen/util.dart index 5dd0f91b4..df55f89dc 100644 --- a/lib/src/builder/codegen/util.dart +++ b/lib/src/builder/codegen/util.dart @@ -58,7 +58,7 @@ String getAccessorKeyNamespace(TypedMapNames names, annotations.TypedMap meta) { String generatedMixinWarningCommentLine(TypedMapNames mixinNames, {@required bool isProps}) { final value = '// If this generated mixin is undefined, it\'s likely because' ' ${mixinNames.consumerName} is not a valid `mixin`-based ${isProps ? 'props' : 'state'} mixin,' - ' or because it is but the generated mixin is not be imported.' + ' or because it is but the generated mixin was not imported.' ' Check the declaration of ${mixinNames.consumerName},' ' and check that ${mixinNames.generatedMixinName} is exported/imported properly.\n'; diff --git a/lib/src/component_declaration/builder_helpers.dart b/lib/src/component_declaration/builder_helpers.dart index 5b408f20e..09d3388bc 100644 --- a/lib/src/component_declaration/builder_helpers.dart +++ b/lib/src/component_declaration/builder_helpers.dart @@ -188,7 +188,7 @@ abstract class GeneratedErrorMessages { 'This error may be due to your state not being picked up by the builder,' ' or because you are extending a stateful component without redeclaring your own state.' '\nDouble-check that your component has a state mixin and/or class and that its name matches' - ' that of the factory/props/component.'; + ' that of the factory/props/component (e.g., "Foo" in Foo/FooProps/FooState/FooComponent).'; static const String component1AnnotationOnComponent2 = '\n\n' 'This error may be due to using @Component() instead of @Component2() on your component extending from UiComponent2.'; From 3ecf502f23fb5aa5b836c7f6ccb520af3675dbcc Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Fri, 18 Sep 2020 11:31:01 -0700 Subject: [PATCH 07/10] Generate files --- .../abstract_inheritance.over_react.g.dart | 12 +++++----- example/builder/src/basic.over_react.g.dart | 4 ++-- .../src/basic_library.over_react.g.dart | 20 ++++++++--------- .../src/basic_with_state.over_react.g.dart | 6 ++--- .../basic_with_type_params.over_react.g.dart | 4 ++-- .../src/function_component.over_react.g.dart | 4 ++-- .../generic_inheritance_sub.over_react.g.dart | 12 +++++----- ...eneric_inheritance_super.over_react.g.dart | 6 ++--- .../src/namespaced_imports.over_react.g.dart | 12 +++++----- .../src/private_component.over_react.g.dart | 6 ++--- ...factory_public_component.over_react.g.dart | 4 ++-- .../with_legacy_props_mixin.over_react.g.dart | 8 +++---- .../my_context_component.over_react.g.dart | 4 ++-- .../my_provider_component.over_react.g.dart | 6 ++--- .../use_callback_example.over_react.g.dart | 2 +- .../use_context_example.over_react.g.dart | 4 ++-- .../use_debug_value_example.over_react.g.dart | 4 ++-- ...mperative_handle_example.over_react.g.dart | 4 ++-- ...se_layout_effect_example.over_react.g.dart | 2 +- .../hooks/use_memo_example.over_react.g.dart | 2 +- .../use_reducer_example.over_react.g.dart | 2 +- .../hooks/use_ref_example.over_react.g.dart | 2 +- .../hooks/use_state_example.over_react.g.dart | 2 +- ...bstract_transition_props.over_react.g.dart | 2 +- .../error_boundary.over_react.g.dart | 6 ++--- ...ror_boundary_recoverable.over_react.g.dart | 6 ++--- .../component/resize_sensor.over_react.g.dart | 4 ++-- ...abstract_transition_test.over_react.g.dart | 10 ++++----- .../pure_test_components.over_react.g.dart | 14 ++++++------ .../component/memo_test.over_react.g.dart | 2 +- .../component/ref_util_test.over_react.g.dart | 8 +++---- ...r_mixin_integration_test.over_react.g.dart | 6 ++--- ..._syntax_integration_test.over_react.g.dart | 4 ++-- ...mponent_integration_test.over_react.g.dart | 12 +++++----- ...tion_verbose_syntax_test.over_react.g.dart | 8 +++---- ...ccessor_integration_test.over_react.g.dart | 4 ++-- ...verride_integration_test.over_react.g.dart | 4 ++-- ...ccessor_integration_test.over_react.g.dart | 6 ++--- .../function_component_test.over_react.g.dart | 2 +- ...ccessor_integration_test.over_react.g.dart | 6 ++--- .../private_props_ddc_bug.over_react.g.dart | 4 ++-- .../props_map_view_test.over_react.g.dart | 2 +- .../props_meta_test.over_react.g.dart | 12 +++++----- ...ccessor_integration_test.over_react.g.dart | 4 ++-- ...mponent_integration_test.over_react.g.dart | 6 ++--- ...ed_prop_integration_test.over_react.g.dart | 4 ++-- .../demo_components/button.over_react.g.dart | 6 ++--- .../button_group.over_react.g.dart | 6 ++--- .../list_group.over_react.g.dart | 4 ++-- .../list_group_item.over_react.g.dart | 4 ++-- .../progress.over_react.g.dart | 6 ++--- .../prop_validation.over_react.g.dart | 4 ++-- .../prop_validation_wrap.over_react.g.dart | 6 ++--- .../src/demo_components/tag.over_react.g.dart | 4 ++-- .../toggle_button.over_react.g.dart | 18 +++++++-------- .../toggle_button_group.over_react.g.dart | 12 +++++----- .../src/demos/ref.over_react.g.dart | 22 +++++++++---------- .../components/little_block.over_react.g.dart | 4 ++-- .../components/big_block.over_react.g.dart | 8 +++---- .../components/big_block.over_react.g.dart | 8 +++---- .../connect_flux_big_block.over_react.g.dart | 8 +++---- .../redux_big_block.over_react.g.dart | 8 +++---- .../should_not_update.over_react.g.dart | 4 ++-- .../random_color_redux.over_react.g.dart | 8 +++---- .../should_not_update.over_react.g.dart | 4 ++-- .../components/big_block.over_react.g.dart | 4 ++-- .../components/big_block.over_react.g.dart | 4 ++-- .../connect_flux_big_block.over_react.g.dart | 8 +++---- .../redux_big_block.over_react.g.dart | 8 +++---- .../should_not_update.over_react.g.dart | 4 ++-- .../components/big_block.over_react.g.dart | 4 ++-- .../should_not_update.over_react.g.dart | 4 ++-- .../components/counter.over_react.g.dart | 8 +++---- .../components/counter.over_react.g.dart | 8 +++---- .../components/counter.over_react.g.dart | 8 +++---- .../demos/faulty-component.over_react.g.dart | 6 ++--- ...aulty-on-mount-component.over_react.g.dart | 4 ++-- 77 files changed, 241 insertions(+), 241 deletions(-) diff --git a/example/builder/src/abstract_inheritance.over_react.g.dart b/example/builder/src/abstract_inheritance.over_react.g.dart index fbbe653df..858b97ad0 100644 --- a/example/builder/src/abstract_inheritance.over_react.g.dart +++ b/example/builder/src/abstract_inheritance.over_react.g.dart @@ -33,9 +33,9 @@ _$$SubProps _$Sub([Map backingProps]) => backingProps == null abstract class _$$SubProps extends UiProps with SuperPropsMixin, - $SuperPropsMixin, // If this generated mixin is undefined, it's likely because SuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SuperPropsMixin. + $SuperPropsMixin, // If this generated mixin is undefined, it's likely because SuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SuperPropsMixin, and check that $SuperPropsMixin is exported/imported properly. SubPropsMixin, - $SubPropsMixin // If this generated mixin is undefined, it's likely because SubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SubPropsMixin. + $SubPropsMixin // If this generated mixin is undefined, it's likely because SubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SubPropsMixin, and check that $SubPropsMixin is exported/imported properly. implements SubProps { _$$SubProps._(); @@ -107,9 +107,9 @@ class _$$SubProps$JsMap extends _$$SubProps { abstract class _$$SubState extends UiState with SuperStateMixin, - $SuperStateMixin, // If this generated mixin is undefined, it's likely because SuperStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of SuperStateMixin. + $SuperStateMixin, // If this generated mixin is undefined, it's likely because SuperStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of SuperStateMixin, and check that $SuperStateMixin is exported/imported properly. SubStateMixin, - $SubStateMixin // If this generated mixin is undefined, it's likely because SubStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of SubStateMixin. + $SubStateMixin // If this generated mixin is undefined, it's likely because SubStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of SubStateMixin, and check that $SubStateMixin is exported/imported properly. implements SubState { _$$SubState._(); @@ -228,9 +228,9 @@ class _$SubComponent extends SubComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because SuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SuperPropsMixin. + // If this generated mixin is undefined, it's likely because SuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SuperPropsMixin, and check that $SuperPropsMixin is exported/imported properly. SuperPropsMixin: $SuperPropsMixin.meta, - // If this generated mixin is undefined, it's likely because SubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SubPropsMixin. + // If this generated mixin is undefined, it's likely because SubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SubPropsMixin, and check that $SubPropsMixin is exported/imported properly. SubPropsMixin: $SubPropsMixin.meta, }); } diff --git a/example/builder/src/basic.over_react.g.dart b/example/builder/src/basic.over_react.g.dart index 27c7b320c..6ee3b4565 100644 --- a/example/builder/src/basic.over_react.g.dart +++ b/example/builder/src/basic.over_react.g.dart @@ -33,7 +33,7 @@ _$$BasicProps _$Basic([Map backingProps]) => backingProps == null abstract class _$$BasicProps extends UiProps with BasicProps, - $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. { _$$BasicProps._(); @@ -139,7 +139,7 @@ class _$BasicComponent extends BasicComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. BasicProps: $BasicProps.meta, }); } diff --git a/example/builder/src/basic_library.over_react.g.dart b/example/builder/src/basic_library.over_react.g.dart index 314a1af7f..84797a2f0 100644 --- a/example/builder/src/basic_library.over_react.g.dart +++ b/example/builder/src/basic_library.over_react.g.dart @@ -34,9 +34,9 @@ _$$BasicPartOfLibProps _$BasicPartOfLib([Map backingProps]) => abstract class _$$BasicPartOfLibProps extends UiProps with ExamplePropsMixin, - $ExamplePropsMixin, // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ExamplePropsMixin. + $ExamplePropsMixin, // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ExamplePropsMixin, and check that $ExamplePropsMixin is exported/imported properly. BasicPartOfLibPropsMixin, - $BasicPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPartOfLibPropsMixin. + $BasicPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPartOfLibPropsMixin, and check that $BasicPartOfLibPropsMixin is exported/imported properly. implements BasicPartOfLibProps { _$$BasicPartOfLibProps._(); @@ -108,9 +108,9 @@ class _$$BasicPartOfLibProps$JsMap extends _$$BasicPartOfLibProps { abstract class _$$BasicPartOfLibState extends UiState with ExampleStateMixin, - $ExampleStateMixin, // If this generated mixin is undefined, it's likely because ExampleStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ExampleStateMixin. + $ExampleStateMixin, // If this generated mixin is undefined, it's likely because ExampleStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ExampleStateMixin, and check that $ExampleStateMixin is exported/imported properly. BasicPartOfLibStateMixin, - $BasicPartOfLibStateMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPartOfLibStateMixin. + $BasicPartOfLibStateMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPartOfLibStateMixin, and check that $BasicPartOfLibStateMixin is exported/imported properly. implements BasicPartOfLibState { _$$BasicPartOfLibState._(); @@ -231,9 +231,9 @@ class _$BasicPartOfLibComponent extends BasicPartOfLibComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ExamplePropsMixin. + // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ExamplePropsMixin, and check that $ExamplePropsMixin is exported/imported properly. ExamplePropsMixin: $ExamplePropsMixin.meta, - // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPartOfLibPropsMixin. + // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPartOfLibPropsMixin, and check that $BasicPartOfLibPropsMixin is exported/imported properly. BasicPartOfLibPropsMixin: $BasicPartOfLibPropsMixin.meta, }); } @@ -397,9 +397,9 @@ _$$SubPartOfLibProps _$SubPartOfLib([Map backingProps]) => backingProps == null abstract class _$$SubPartOfLibProps extends UiProps with SuperPartOfLibPropsMixin, - $SuperPartOfLibPropsMixin, // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SuperPartOfLibPropsMixin. + $SuperPartOfLibPropsMixin, // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SuperPartOfLibPropsMixin, and check that $SuperPartOfLibPropsMixin is exported/imported properly. SubPartOfLibPropsMixin, - $SubPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SubPartOfLibPropsMixin. + $SubPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SubPartOfLibPropsMixin, and check that $SubPartOfLibPropsMixin is exported/imported properly. implements SubPartOfLibProps { _$$SubPartOfLibProps._(); @@ -507,9 +507,9 @@ class _$SubPartOfLibComponent extends SubPartOfLibComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SuperPartOfLibPropsMixin. + // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SuperPartOfLibPropsMixin, and check that $SuperPartOfLibPropsMixin is exported/imported properly. SuperPartOfLibPropsMixin: $SuperPartOfLibPropsMixin.meta, - // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SubPartOfLibPropsMixin. + // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SubPartOfLibPropsMixin, and check that $SubPartOfLibPropsMixin is exported/imported properly. SubPartOfLibPropsMixin: $SubPartOfLibPropsMixin.meta, }); } diff --git a/example/builder/src/basic_with_state.over_react.g.dart b/example/builder/src/basic_with_state.over_react.g.dart index f408db3ce..f01749921 100644 --- a/example/builder/src/basic_with_state.over_react.g.dart +++ b/example/builder/src/basic_with_state.over_react.g.dart @@ -33,7 +33,7 @@ _$$BasicProps _$Basic([Map backingProps]) => backingProps == null abstract class _$$BasicProps extends UiProps with BasicProps, - $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. { _$$BasicProps._(); @@ -104,7 +104,7 @@ class _$$BasicProps$JsMap extends _$$BasicProps { abstract class _$$BasicState extends UiState with BasicState, - $BasicState // If this generated mixin is undefined, it's likely because BasicState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicState. + $BasicState // If this generated mixin is undefined, it's likely because BasicState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicState, and check that $BasicState is exported/imported properly. { _$$BasicState._(); @@ -222,7 +222,7 @@ class _$BasicComponent extends BasicComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. BasicProps: $BasicProps.meta, }); } diff --git a/example/builder/src/basic_with_type_params.over_react.g.dart b/example/builder/src/basic_with_type_params.over_react.g.dart index 7f66d2511..8c215d3dc 100644 --- a/example/builder/src/basic_with_type_params.over_react.g.dart +++ b/example/builder/src/basic_with_type_params.over_react.g.dart @@ -34,7 +34,7 @@ abstract class _$$BasicProps extends UiProps with BasicPropsMixin, $BasicPropsMixin // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPropsMixin. + U> // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPropsMixin, and check that $BasicPropsMixin is exported/imported properly. implements BasicProps { _$$BasicProps._(); @@ -141,7 +141,7 @@ class _$BasicComponent extends BasicComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPropsMixin. + // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPropsMixin, and check that $BasicPropsMixin is exported/imported properly. BasicPropsMixin: $BasicPropsMixin.meta, }); } diff --git a/example/builder/src/function_component.over_react.g.dart b/example/builder/src/function_component.over_react.g.dart index b3e39d9cf..3c9a29f65 100644 --- a/example/builder/src/function_component.over_react.g.dart +++ b/example/builder/src/function_component.over_react.g.dart @@ -145,7 +145,7 @@ final UiFactoryConfig<_$$BasicProps> $SimpleConfig = UiFactoryConfig( abstract class _$$BasicProps extends UiProps with BasicProps, - $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. { _$$BasicProps._(); @@ -218,7 +218,7 @@ final UiFactoryConfig<_$$FooProps> $FooConfig = UiFactoryConfig( abstract class _$$FooProps extends UiProps with FooProps, - $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. { _$$FooProps._(); diff --git a/example/builder/src/generic_inheritance_sub.over_react.g.dart b/example/builder/src/generic_inheritance_sub.over_react.g.dart index 783e58a2c..7403115e2 100644 --- a/example/builder/src/generic_inheritance_sub.over_react.g.dart +++ b/example/builder/src/generic_inheritance_sub.over_react.g.dart @@ -33,9 +33,9 @@ _$$GenericSubProps _$GenericSub([Map backingProps]) => backingProps == null abstract class _$$GenericSubProps extends UiProps with GenericSuperPropsMixin, - $GenericSuperPropsMixin, // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSuperPropsMixin. + $GenericSuperPropsMixin, // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSuperPropsMixin, and check that $GenericSuperPropsMixin is exported/imported properly. GenericSubPropsMixin, - $GenericSubPropsMixin // If this generated mixin is undefined, it's likely because GenericSubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSubPropsMixin. + $GenericSubPropsMixin // If this generated mixin is undefined, it's likely because GenericSubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSubPropsMixin, and check that $GenericSubPropsMixin is exported/imported properly. implements GenericSubProps { _$$GenericSubProps._(); @@ -107,9 +107,9 @@ class _$$GenericSubProps$JsMap extends _$$GenericSubProps { abstract class _$$GenericSubState extends UiState with GenericSuperStateMixin, - $GenericSuperStateMixin, // If this generated mixin is undefined, it's likely because GenericSuperStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSuperStateMixin. + $GenericSuperStateMixin, // If this generated mixin is undefined, it's likely because GenericSuperStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSuperStateMixin, and check that $GenericSuperStateMixin is exported/imported properly. GenericSubStateMixin, - $GenericSubStateMixin // If this generated mixin is undefined, it's likely because GenericSubStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSubStateMixin. + $GenericSubStateMixin // If this generated mixin is undefined, it's likely because GenericSubStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSubStateMixin, and check that $GenericSubStateMixin is exported/imported properly. implements GenericSubState { _$$GenericSubState._(); @@ -230,9 +230,9 @@ class _$GenericSubComponent extends GenericSubComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSuperPropsMixin. + // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSuperPropsMixin, and check that $GenericSuperPropsMixin is exported/imported properly. GenericSuperPropsMixin: $GenericSuperPropsMixin.meta, - // If this generated mixin is undefined, it's likely because GenericSubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSubPropsMixin. + // If this generated mixin is undefined, it's likely because GenericSubPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSubPropsMixin, and check that $GenericSubPropsMixin is exported/imported properly. GenericSubPropsMixin: $GenericSubPropsMixin.meta, }); } diff --git a/example/builder/src/generic_inheritance_super.over_react.g.dart b/example/builder/src/generic_inheritance_super.over_react.g.dart index 900e13a5d..f81a0db44 100644 --- a/example/builder/src/generic_inheritance_super.over_react.g.dart +++ b/example/builder/src/generic_inheritance_super.over_react.g.dart @@ -33,7 +33,7 @@ _$$GenericSuperProps _$GenericSuper([Map backingProps]) => backingProps == null abstract class _$$GenericSuperProps extends UiProps with GenericSuperPropsMixin, - $GenericSuperPropsMixin // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSuperPropsMixin. + $GenericSuperPropsMixin // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSuperPropsMixin, and check that $GenericSuperPropsMixin is exported/imported properly. implements GenericSuperProps { _$$GenericSuperProps._(); @@ -105,7 +105,7 @@ class _$$GenericSuperProps$JsMap extends _$$GenericSuperProps { abstract class _$$GenericSuperStateMixin extends UiState with GenericSuperStateMixin, - $GenericSuperStateMixin // If this generated mixin is undefined, it's likely because GenericSuperStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSuperStateMixin. + $GenericSuperStateMixin // If this generated mixin is undefined, it's likely because GenericSuperStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSuperStateMixin, and check that $GenericSuperStateMixin is exported/imported properly. { _$$GenericSuperStateMixin._(); @@ -225,7 +225,7 @@ class _$GenericSuperComponent extends GenericSuperComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of GenericSuperPropsMixin. + // If this generated mixin is undefined, it's likely because GenericSuperPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of GenericSuperPropsMixin, and check that $GenericSuperPropsMixin is exported/imported properly. GenericSuperPropsMixin: $GenericSuperPropsMixin.meta, }); } diff --git a/example/builder/src/namespaced_imports.over_react.g.dart b/example/builder/src/namespaced_imports.over_react.g.dart index 27758ab75..7f26ffe43 100644 --- a/example/builder/src/namespaced_imports.over_react.g.dart +++ b/example/builder/src/namespaced_imports.over_react.g.dart @@ -33,9 +33,9 @@ _$$BasicProps _$Basic([Map backingProps]) => backingProps == null abstract class _$$BasicProps extends UiProps with pm.ExamplePropsMixin, - pm.$ExamplePropsMixin, // If this generated mixin is undefined, it's likely because pm.ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of pm.ExamplePropsMixin. + pm.$ExamplePropsMixin, // If this generated mixin is undefined, it's likely because pm.ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of pm.ExamplePropsMixin, and check that pm.$ExamplePropsMixin is exported/imported properly. BasicPropsMixin, - $BasicPropsMixin // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPropsMixin. + $BasicPropsMixin // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPropsMixin, and check that $BasicPropsMixin is exported/imported properly. implements BasicProps { _$$BasicProps._(); @@ -107,9 +107,9 @@ class _$$BasicProps$JsMap extends _$$BasicProps { abstract class _$$BasicState extends UiState with sm.ExampleStateMixin, - sm.$ExampleStateMixin, // If this generated mixin is undefined, it's likely because sm.ExampleStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of sm.ExampleStateMixin. + sm.$ExampleStateMixin, // If this generated mixin is undefined, it's likely because sm.ExampleStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of sm.ExampleStateMixin, and check that sm.$ExampleStateMixin is exported/imported properly. BasicStateMixin, - $BasicStateMixin // If this generated mixin is undefined, it's likely because BasicStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicStateMixin. + $BasicStateMixin // If this generated mixin is undefined, it's likely because BasicStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicStateMixin, and check that $BasicStateMixin is exported/imported properly. implements BasicState { _$$BasicState._(); @@ -228,9 +228,9 @@ class _$BasicComponent extends BasicComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because pm.ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of pm.ExamplePropsMixin. + // If this generated mixin is undefined, it's likely because pm.ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of pm.ExamplePropsMixin, and check that pm.$ExamplePropsMixin is exported/imported properly. pm.ExamplePropsMixin: pm.$ExamplePropsMixin.meta, - // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPropsMixin. + // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPropsMixin, and check that $BasicPropsMixin is exported/imported properly. BasicPropsMixin: $BasicPropsMixin.meta, }); } diff --git a/example/builder/src/private_component.over_react.g.dart b/example/builder/src/private_component.over_react.g.dart index cb0f30402..ef9158b4a 100644 --- a/example/builder/src/private_component.over_react.g.dart +++ b/example/builder/src/private_component.over_react.g.dart @@ -33,7 +33,7 @@ _$$_PrivateProps _$_Private([Map backingProps]) => backingProps == null abstract class _$$_PrivateProps extends UiProps with _PrivateProps, - $_PrivateProps // If this generated mixin is undefined, it's likely because _PrivateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of _PrivateProps. + $_PrivateProps // If this generated mixin is undefined, it's likely because _PrivateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of _PrivateProps, and check that $_PrivateProps is exported/imported properly. { _$$_PrivateProps._(); @@ -104,7 +104,7 @@ class _$$_PrivateProps$JsMap extends _$$_PrivateProps { abstract class _$$_PrivateState extends UiState with _PrivateState, - $_PrivateState // If this generated mixin is undefined, it's likely because _PrivateState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of _PrivateState. + $_PrivateState // If this generated mixin is undefined, it's likely because _PrivateState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of _PrivateState, and check that $_PrivateState is exported/imported properly. { _$$_PrivateState._(); @@ -224,7 +224,7 @@ class _$_PrivateComponent extends _PrivateComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because _PrivateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of _PrivateProps. + // If this generated mixin is undefined, it's likely because _PrivateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of _PrivateProps, and check that $_PrivateProps is exported/imported properly. _PrivateProps: $_PrivateProps.meta, }); } diff --git a/example/builder/src/private_factory_public_component.over_react.g.dart b/example/builder/src/private_factory_public_component.over_react.g.dart index fe7f167e5..f994c9be6 100644 --- a/example/builder/src/private_factory_public_component.over_react.g.dart +++ b/example/builder/src/private_factory_public_component.over_react.g.dart @@ -34,7 +34,7 @@ _$$FormActionInputProps _$_FormActionInput([Map backingProps]) => abstract class _$$FormActionInputProps extends UiProps with FormActionInputProps, - $FormActionInputProps // If this generated mixin is undefined, it's likely because FormActionInputProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FormActionInputProps. + $FormActionInputProps // If this generated mixin is undefined, it's likely because FormActionInputProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FormActionInputProps, and check that $FormActionInputProps is exported/imported properly. { _$$FormActionInputProps._(); @@ -141,7 +141,7 @@ class _$FormActionInputComponent extends FormActionInputComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FormActionInputProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FormActionInputProps. + // If this generated mixin is undefined, it's likely because FormActionInputProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FormActionInputProps, and check that $FormActionInputProps is exported/imported properly. FormActionInputProps: $FormActionInputProps.meta, }); } diff --git a/example/builder/src/with_legacy_props_mixin.over_react.g.dart b/example/builder/src/with_legacy_props_mixin.over_react.g.dart index 106bdee47..39076f99f 100644 --- a/example/builder/src/with_legacy_props_mixin.over_react.g.dart +++ b/example/builder/src/with_legacy_props_mixin.over_react.g.dart @@ -33,9 +33,9 @@ _$$BasicProps _$Basic([Map backingProps]) => backingProps == null abstract class _$$BasicProps extends UiProps with BasicPropsMixin, - $BasicPropsMixin, // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPropsMixin. + $BasicPropsMixin, // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPropsMixin, and check that $BasicPropsMixin is exported/imported properly. TransitionPropsMixin, - $TransitionPropsMixin // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TransitionPropsMixin. + $TransitionPropsMixin // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TransitionPropsMixin, and check that $TransitionPropsMixin is exported/imported properly. implements BasicProps { _$$BasicProps._(); @@ -142,9 +142,9 @@ class _$BasicComponent extends BasicComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPropsMixin. + // If this generated mixin is undefined, it's likely because BasicPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPropsMixin, and check that $BasicPropsMixin is exported/imported properly. BasicPropsMixin: $BasicPropsMixin.meta, - // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TransitionPropsMixin. + // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TransitionPropsMixin, and check that $TransitionPropsMixin is exported/imported properly. TransitionPropsMixin: $TransitionPropsMixin.meta, }); } diff --git a/example/context/components/my_context_component.over_react.g.dart b/example/context/components/my_context_component.over_react.g.dart index dc5b64687..f724dd681 100644 --- a/example/context/components/my_context_component.over_react.g.dart +++ b/example/context/components/my_context_component.over_react.g.dart @@ -34,7 +34,7 @@ _$$MyContextComponentProps _$MyContext([Map backingProps]) => abstract class _$$MyContextComponentProps extends UiProps with MyContextComponentProps, - $MyContextComponentProps // If this generated mixin is undefined, it's likely because MyContextComponentProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of MyContextComponentProps. + $MyContextComponentProps // If this generated mixin is undefined, it's likely because MyContextComponentProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of MyContextComponentProps, and check that $MyContextComponentProps is exported/imported properly. { _$$MyContextComponentProps._(); @@ -142,7 +142,7 @@ class _$MyContextComponentComponent extends MyContextComponentComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because MyContextComponentProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of MyContextComponentProps. + // If this generated mixin is undefined, it's likely because MyContextComponentProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of MyContextComponentProps, and check that $MyContextComponentProps is exported/imported properly. MyContextComponentProps: $MyContextComponentProps.meta, }); } diff --git a/example/context/components/my_provider_component.over_react.g.dart b/example/context/components/my_provider_component.over_react.g.dart index 95ffeb88e..be0b25bc7 100644 --- a/example/context/components/my_provider_component.over_react.g.dart +++ b/example/context/components/my_provider_component.over_react.g.dart @@ -33,7 +33,7 @@ _$$MyProviderProps _$MyProvider([Map backingProps]) => backingProps == null abstract class _$$MyProviderProps extends UiProps with MyProviderProps, - $MyProviderProps // If this generated mixin is undefined, it's likely because MyProviderProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of MyProviderProps. + $MyProviderProps // If this generated mixin is undefined, it's likely because MyProviderProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of MyProviderProps, and check that $MyProviderProps is exported/imported properly. { _$$MyProviderProps._(); @@ -104,7 +104,7 @@ class _$$MyProviderProps$JsMap extends _$$MyProviderProps { abstract class _$$MyProviderState extends UiState with MyProviderState, - $MyProviderState // If this generated mixin is undefined, it's likely because MyProviderState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of MyProviderState. + $MyProviderState // If this generated mixin is undefined, it's likely because MyProviderState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of MyProviderState, and check that $MyProviderState is exported/imported properly. { _$$MyProviderState._(); @@ -224,7 +224,7 @@ class _$MyProviderComponent extends MyProviderComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because MyProviderProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of MyProviderProps. + // If this generated mixin is undefined, it's likely because MyProviderProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of MyProviderProps, and check that $MyProviderProps is exported/imported properly. MyProviderProps: $MyProviderProps.meta, }); } diff --git a/example/hooks/use_callback_example.over_react.g.dart b/example/hooks/use_callback_example.over_react.g.dart index 17a76bbdf..490a69b16 100644 --- a/example/hooks/use_callback_example.over_react.g.dart +++ b/example/hooks/use_callback_example.over_react.g.dart @@ -42,7 +42,7 @@ final UiFactoryConfig<_$$UseCallbackExampleProps> $UseCallbackExampleConfig = abstract class _$$UseCallbackExampleProps extends UiProps with UseCallbackExampleProps, - $UseCallbackExampleProps // If this generated mixin is undefined, it's likely because UseCallbackExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseCallbackExampleProps. + $UseCallbackExampleProps // If this generated mixin is undefined, it's likely because UseCallbackExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseCallbackExampleProps, and check that $UseCallbackExampleProps is exported/imported properly. { _$$UseCallbackExampleProps._(); diff --git a/example/hooks/use_context_example.over_react.g.dart b/example/hooks/use_context_example.over_react.g.dart index ebc10b77c..b60409b89 100644 --- a/example/hooks/use_context_example.over_react.g.dart +++ b/example/hooks/use_context_example.over_react.g.dart @@ -61,7 +61,7 @@ final UiFactoryConfig<_$$UseContextExampleProps> $UseContextExampleConfig = abstract class _$$UseContextExampleProps extends UiProps with UseContextExampleProps, - $UseContextExampleProps // If this generated mixin is undefined, it's likely because UseContextExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseContextExampleProps. + $UseContextExampleProps // If this generated mixin is undefined, it's likely because UseContextExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseContextExampleProps, and check that $UseContextExampleProps is exported/imported properly. { _$$UseContextExampleProps._(); @@ -135,7 +135,7 @@ final UiFactoryConfig<_$$NewContextProviderProps> $NewContextProviderConfig = abstract class _$$NewContextProviderProps extends UiProps with NewContextProviderProps, - $NewContextProviderProps // If this generated mixin is undefined, it's likely because NewContextProviderProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of NewContextProviderProps. + $NewContextProviderProps // If this generated mixin is undefined, it's likely because NewContextProviderProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of NewContextProviderProps, and check that $NewContextProviderProps is exported/imported properly. { _$$NewContextProviderProps._(); diff --git a/example/hooks/use_debug_value_example.over_react.g.dart b/example/hooks/use_debug_value_example.over_react.g.dart index ddea2e6e4..3cd1ae54d 100644 --- a/example/hooks/use_debug_value_example.over_react.g.dart +++ b/example/hooks/use_debug_value_example.over_react.g.dart @@ -74,7 +74,7 @@ final UiFactoryConfig<_$$FriendListItemProps> $FriendListItemConfig = abstract class _$$FriendListItemProps extends UiProps with FriendListItemProps, - $FriendListItemProps // If this generated mixin is undefined, it's likely because FriendListItemProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FriendListItemProps. + $FriendListItemProps // If this generated mixin is undefined, it's likely because FriendListItemProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FriendListItemProps, and check that $FriendListItemProps is exported/imported properly. { _$$FriendListItemProps._(); @@ -148,7 +148,7 @@ final UiFactoryConfig<_$$UseDebugValueExampleProps> abstract class _$$UseDebugValueExampleProps extends UiProps with UseDebugValueExampleProps, - $UseDebugValueExampleProps // If this generated mixin is undefined, it's likely because UseDebugValueExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseDebugValueExampleProps. + $UseDebugValueExampleProps // If this generated mixin is undefined, it's likely because UseDebugValueExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseDebugValueExampleProps, and check that $UseDebugValueExampleProps is exported/imported properly. { _$$UseDebugValueExampleProps._(); diff --git a/example/hooks/use_imperative_handle_example.over_react.g.dart b/example/hooks/use_imperative_handle_example.over_react.g.dart index 721eec8d9..9482093d1 100644 --- a/example/hooks/use_imperative_handle_example.over_react.g.dart +++ b/example/hooks/use_imperative_handle_example.over_react.g.dart @@ -98,7 +98,7 @@ final UiFactoryConfig<_$$FancyInputProps> $_FancyInputConfig = UiFactoryConfig( abstract class _$$FancyInputProps extends UiProps with FancyInputProps, - $FancyInputProps // If this generated mixin is undefined, it's likely because FancyInputProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FancyInputProps. + $FancyInputProps // If this generated mixin is undefined, it's likely because FancyInputProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FancyInputProps, and check that $FancyInputProps is exported/imported properly. { _$$FancyInputProps._(); @@ -172,7 +172,7 @@ final UiFactoryConfig<_$$UseImperativeHandleExampleProps> abstract class _$$UseImperativeHandleExampleProps extends UiProps with UseImperativeHandleExampleProps, - $UseImperativeHandleExampleProps // If this generated mixin is undefined, it's likely because UseImperativeHandleExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseImperativeHandleExampleProps. + $UseImperativeHandleExampleProps // If this generated mixin is undefined, it's likely because UseImperativeHandleExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseImperativeHandleExampleProps, and check that $UseImperativeHandleExampleProps is exported/imported properly. { _$$UseImperativeHandleExampleProps._(); diff --git a/example/hooks/use_layout_effect_example.over_react.g.dart b/example/hooks/use_layout_effect_example.over_react.g.dart index 65006e460..c41fdb287 100644 --- a/example/hooks/use_layout_effect_example.over_react.g.dart +++ b/example/hooks/use_layout_effect_example.over_react.g.dart @@ -42,7 +42,7 @@ final UiFactoryConfig<_$$UseLayoutEffectProps> $UseLayoutEffectExampleConfig = abstract class _$$UseLayoutEffectProps extends UiProps with UseLayoutEffectProps, - $UseLayoutEffectProps // If this generated mixin is undefined, it's likely because UseLayoutEffectProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseLayoutEffectProps. + $UseLayoutEffectProps // If this generated mixin is undefined, it's likely because UseLayoutEffectProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseLayoutEffectProps, and check that $UseLayoutEffectProps is exported/imported properly. { _$$UseLayoutEffectProps._(); diff --git a/example/hooks/use_memo_example.over_react.g.dart b/example/hooks/use_memo_example.over_react.g.dart index dbce4a042..2739e0d9c 100644 --- a/example/hooks/use_memo_example.over_react.g.dart +++ b/example/hooks/use_memo_example.over_react.g.dart @@ -42,7 +42,7 @@ final UiFactoryConfig<_$$UseMemoExampleProps> $UseMemoExampleConfig = abstract class _$$UseMemoExampleProps extends UiProps with UseMemoExampleProps, - $UseMemoExampleProps // If this generated mixin is undefined, it's likely because UseMemoExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseMemoExampleProps. + $UseMemoExampleProps // If this generated mixin is undefined, it's likely because UseMemoExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseMemoExampleProps, and check that $UseMemoExampleProps is exported/imported properly. { _$$UseMemoExampleProps._(); diff --git a/example/hooks/use_reducer_example.over_react.g.dart b/example/hooks/use_reducer_example.over_react.g.dart index be8c974fe..5e0d98d29 100644 --- a/example/hooks/use_reducer_example.over_react.g.dart +++ b/example/hooks/use_reducer_example.over_react.g.dart @@ -57,7 +57,7 @@ final UiFactoryConfig<_$$UseReducerExampleProps> $UseReducerExampleConfig = abstract class _$$UseReducerExampleProps extends UiProps with UseReducerExampleProps, - $UseReducerExampleProps // If this generated mixin is undefined, it's likely because UseReducerExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseReducerExampleProps. + $UseReducerExampleProps // If this generated mixin is undefined, it's likely because UseReducerExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseReducerExampleProps, and check that $UseReducerExampleProps is exported/imported properly. { _$$UseReducerExampleProps._(); diff --git a/example/hooks/use_ref_example.over_react.g.dart b/example/hooks/use_ref_example.over_react.g.dart index bdb66cbb3..ba1cb081b 100644 --- a/example/hooks/use_ref_example.over_react.g.dart +++ b/example/hooks/use_ref_example.over_react.g.dart @@ -42,7 +42,7 @@ final UiFactoryConfig<_$$UseRefExampleProps> $UseRefExampleConfig = abstract class _$$UseRefExampleProps extends UiProps with UseRefExampleProps, - $UseRefExampleProps // If this generated mixin is undefined, it's likely because UseRefExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseRefExampleProps. + $UseRefExampleProps // If this generated mixin is undefined, it's likely because UseRefExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseRefExampleProps, and check that $UseRefExampleProps is exported/imported properly. { _$$UseRefExampleProps._(); diff --git a/example/hooks/use_state_example.over_react.g.dart b/example/hooks/use_state_example.over_react.g.dart index 138da435c..59982510d 100644 --- a/example/hooks/use_state_example.over_react.g.dart +++ b/example/hooks/use_state_example.over_react.g.dart @@ -42,7 +42,7 @@ final UiFactoryConfig<_$$UseStateExampleProps> $UseStateExampleConfig = abstract class _$$UseStateExampleProps extends UiProps with UseStateExampleProps, - $UseStateExampleProps // If this generated mixin is undefined, it's likely because UseStateExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of UseStateExampleProps. + $UseStateExampleProps // If this generated mixin is undefined, it's likely because UseStateExampleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of UseStateExampleProps, and check that $UseStateExampleProps is exported/imported properly. { _$$UseStateExampleProps._(); diff --git a/lib/src/component/abstract_transition_props.over_react.g.dart b/lib/src/component/abstract_transition_props.over_react.g.dart index 95e5483f4..479405744 100644 --- a/lib/src/component/abstract_transition_props.over_react.g.dart +++ b/lib/src/component/abstract_transition_props.over_react.g.dart @@ -132,7 +132,7 @@ _$$TransitionPropsMixin _$TransitionPropsMapView([Map backingProps]) => abstract class _$$TransitionPropsMixin extends UiProps with TransitionPropsMixin, - $TransitionPropsMixin // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TransitionPropsMixin. + $TransitionPropsMixin // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TransitionPropsMixin, and check that $TransitionPropsMixin is exported/imported properly. { _$$TransitionPropsMixin._(); diff --git a/lib/src/component/error_boundary.over_react.g.dart b/lib/src/component/error_boundary.over_react.g.dart index 8eaf51ab0..a52a3a655 100644 --- a/lib/src/component/error_boundary.over_react.g.dart +++ b/lib/src/component/error_boundary.over_react.g.dart @@ -35,7 +35,7 @@ _$$ErrorBoundaryProps _$ErrorBoundary([Map backingProps]) => abstract class _$$ErrorBoundaryProps extends UiProps with ErrorBoundaryProps, - $ErrorBoundaryProps // If this generated mixin is undefined, it's likely because ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ErrorBoundaryProps. + $ErrorBoundaryProps // If this generated mixin is undefined, it's likely because ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ErrorBoundaryProps, and check that $ErrorBoundaryProps is exported/imported properly. { _$$ErrorBoundaryProps._(); @@ -106,7 +106,7 @@ class _$$ErrorBoundaryProps$JsMap extends _$$ErrorBoundaryProps { abstract class _$$ErrorBoundaryState extends UiState with ErrorBoundaryState, - $ErrorBoundaryState // If this generated mixin is undefined, it's likely because ErrorBoundaryState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ErrorBoundaryState. + $ErrorBoundaryState // If this generated mixin is undefined, it's likely because ErrorBoundaryState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ErrorBoundaryState, and check that $ErrorBoundaryState is exported/imported properly. { _$$ErrorBoundaryState._(); @@ -226,7 +226,7 @@ class _$ErrorBoundaryComponent extends ErrorBoundaryComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ErrorBoundaryProps. + // If this generated mixin is undefined, it's likely because ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ErrorBoundaryProps, and check that $ErrorBoundaryProps is exported/imported properly. ErrorBoundaryProps: $ErrorBoundaryProps.meta, }); } diff --git a/lib/src/component/error_boundary_recoverable.over_react.g.dart b/lib/src/component/error_boundary_recoverable.over_react.g.dart index 6d7feb65f..6795d005e 100644 --- a/lib/src/component/error_boundary_recoverable.over_react.g.dart +++ b/lib/src/component/error_boundary_recoverable.over_react.g.dart @@ -36,7 +36,7 @@ _$$RecoverableErrorBoundaryProps _$RecoverableErrorBoundary( abstract class _$$RecoverableErrorBoundaryProps extends UiProps with v2.ErrorBoundaryProps, - v2.$ErrorBoundaryProps // If this generated mixin is undefined, it's likely because v2.ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of v2.ErrorBoundaryProps. + v2.$ErrorBoundaryProps // If this generated mixin is undefined, it's likely because v2.ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of v2.ErrorBoundaryProps, and check that v2.$ErrorBoundaryProps is exported/imported properly. implements RecoverableErrorBoundaryProps { _$$RecoverableErrorBoundaryProps._(); @@ -110,7 +110,7 @@ class _$$RecoverableErrorBoundaryProps$JsMap abstract class _$$RecoverableErrorBoundaryState extends UiState with v2.ErrorBoundaryState, - v2.$ErrorBoundaryState // If this generated mixin is undefined, it's likely because v2.ErrorBoundaryState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of v2.ErrorBoundaryState. + v2.$ErrorBoundaryState // If this generated mixin is undefined, it's likely because v2.ErrorBoundaryState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of v2.ErrorBoundaryState, and check that v2.$ErrorBoundaryState is exported/imported properly. implements RecoverableErrorBoundaryState { _$$RecoverableErrorBoundaryState._(); @@ -236,7 +236,7 @@ class _$RecoverableErrorBoundaryComponent @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because v2.ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of v2.ErrorBoundaryProps. + // If this generated mixin is undefined, it's likely because v2.ErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of v2.ErrorBoundaryProps, and check that v2.$ErrorBoundaryProps is exported/imported properly. v2.ErrorBoundaryProps: v2.$ErrorBoundaryProps.meta, }); } diff --git a/lib/src/component/resize_sensor.over_react.g.dart b/lib/src/component/resize_sensor.over_react.g.dart index 2343e47b9..7269e74b8 100644 --- a/lib/src/component/resize_sensor.over_react.g.dart +++ b/lib/src/component/resize_sensor.over_react.g.dart @@ -33,7 +33,7 @@ _$$ResizeSensorProps _$ResizeSensor([Map backingProps]) => backingProps == null abstract class _$$ResizeSensorProps extends UiProps with ResizeSensorProps, - $ResizeSensorProps // If this generated mixin is undefined, it's likely because ResizeSensorProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ResizeSensorProps. + $ResizeSensorProps // If this generated mixin is undefined, it's likely because ResizeSensorProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ResizeSensorProps, and check that $ResizeSensorProps is exported/imported properly. { _$$ResizeSensorProps._(); @@ -140,7 +140,7 @@ class _$ResizeSensorComponent extends ResizeSensorComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ResizeSensorProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ResizeSensorProps. + // If this generated mixin is undefined, it's likely because ResizeSensorProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ResizeSensorProps, and check that $ResizeSensorProps is exported/imported properly. ResizeSensorProps: $ResizeSensorProps.meta, }); } diff --git a/test/over_react/component/abstract_transition_test.over_react.g.dart b/test/over_react/component/abstract_transition_test.over_react.g.dart index f57e46cab..c59862d3f 100644 --- a/test/over_react/component/abstract_transition_test.over_react.g.dart +++ b/test/over_react/component/abstract_transition_test.over_react.g.dart @@ -33,9 +33,9 @@ _$$TransitionerProps _$Transitioner([Map backingProps]) => backingProps == null abstract class _$$TransitionerProps extends UiProps with TransitionerPropsMixin, - $TransitionerPropsMixin, // If this generated mixin is undefined, it's likely because TransitionerPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TransitionerPropsMixin. + $TransitionerPropsMixin, // If this generated mixin is undefined, it's likely because TransitionerPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TransitionerPropsMixin, and check that $TransitionerPropsMixin is exported/imported properly. TransitionPropsMixin, - $TransitionPropsMixin // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TransitionPropsMixin. + $TransitionPropsMixin // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TransitionPropsMixin, and check that $TransitionPropsMixin is exported/imported properly. implements TransitionerProps { _$$TransitionerProps._(); @@ -107,7 +107,7 @@ class _$$TransitionerProps$JsMap extends _$$TransitionerProps { abstract class _$$TransitionerState extends UiState with AbstractTransitionState, - $AbstractTransitionState // If this generated mixin is undefined, it's likely because AbstractTransitionState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of AbstractTransitionState. + $AbstractTransitionState // If this generated mixin is undefined, it's likely because AbstractTransitionState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of AbstractTransitionState, and check that $AbstractTransitionState is exported/imported properly. implements TransitionerState { _$$TransitionerState._(); @@ -228,9 +228,9 @@ class _$TransitionerComponent extends TransitionerComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because TransitionerPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TransitionerPropsMixin. + // If this generated mixin is undefined, it's likely because TransitionerPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TransitionerPropsMixin, and check that $TransitionerPropsMixin is exported/imported properly. TransitionerPropsMixin: $TransitionerPropsMixin.meta, - // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TransitionPropsMixin. + // If this generated mixin is undefined, it's likely because TransitionPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TransitionPropsMixin, and check that $TransitionPropsMixin is exported/imported properly. TransitionPropsMixin: $TransitionPropsMixin.meta, }); } diff --git a/test/over_react/component/fixtures/pure_test_components.over_react.g.dart b/test/over_react/component/fixtures/pure_test_components.over_react.g.dart index aaf50d1b2..76a8d5d41 100644 --- a/test/over_react/component/fixtures/pure_test_components.over_react.g.dart +++ b/test/over_react/component/fixtures/pure_test_components.over_react.g.dart @@ -34,7 +34,7 @@ _$$PureTestWrapperProps _$PureTestWrapper([Map backingProps]) => abstract class _$$PureTestWrapperProps extends UiProps with SharedPureTestPropsMixin, - $SharedPureTestPropsMixin // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SharedPureTestPropsMixin. + $SharedPureTestPropsMixin // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SharedPureTestPropsMixin, and check that $SharedPureTestPropsMixin is exported/imported properly. implements PureTestWrapperProps { _$$PureTestWrapperProps._(); @@ -142,7 +142,7 @@ class _$PureTestWrapperComponent extends PureTestWrapperComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SharedPureTestPropsMixin. + // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SharedPureTestPropsMixin, and check that $SharedPureTestPropsMixin is exported/imported properly. SharedPureTestPropsMixin: $SharedPureTestPropsMixin.meta, }); } @@ -173,9 +173,9 @@ _$$PureTestProps _$PureTest([Map backingProps]) => backingProps == null abstract class _$$PureTestProps extends UiProps with SharedPureTestPropsMixin, - $SharedPureTestPropsMixin, // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SharedPureTestPropsMixin. + $SharedPureTestPropsMixin, // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SharedPureTestPropsMixin, and check that $SharedPureTestPropsMixin is exported/imported properly. PureTestPropsMixin, - $PureTestPropsMixin // If this generated mixin is undefined, it's likely because PureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of PureTestPropsMixin. + $PureTestPropsMixin // If this generated mixin is undefined, it's likely because PureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of PureTestPropsMixin, and check that $PureTestPropsMixin is exported/imported properly. implements PureTestProps { _$$PureTestProps._(); @@ -247,7 +247,7 @@ class _$$PureTestProps$JsMap extends _$$PureTestProps { abstract class _$$PureTestState extends UiState with PureTestState, - $PureTestState // If this generated mixin is undefined, it's likely because PureTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of PureTestState. + $PureTestState // If this generated mixin is undefined, it's likely because PureTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of PureTestState, and check that $PureTestState is exported/imported properly. { _$$PureTestState._(); @@ -367,9 +367,9 @@ class _$PureTestComponent extends PureTestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SharedPureTestPropsMixin. + // If this generated mixin is undefined, it's likely because SharedPureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SharedPureTestPropsMixin, and check that $SharedPureTestPropsMixin is exported/imported properly. SharedPureTestPropsMixin: $SharedPureTestPropsMixin.meta, - // If this generated mixin is undefined, it's likely because PureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of PureTestPropsMixin. + // If this generated mixin is undefined, it's likely because PureTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of PureTestPropsMixin, and check that $PureTestPropsMixin is exported/imported properly. PureTestPropsMixin: $PureTestPropsMixin.meta, }); } diff --git a/test/over_react/component/memo_test.over_react.g.dart b/test/over_react/component/memo_test.over_react.g.dart index c86027a9f..9f84b93cb 100644 --- a/test/over_react/component/memo_test.over_react.g.dart +++ b/test/over_react/component/memo_test.over_react.g.dart @@ -218,7 +218,7 @@ final UiFactoryConfig<_$$FunctionCustomPropsProps> $FunctionCustomPropsConfig = abstract class _$$FunctionCustomPropsProps extends UiProps with FunctionCustomPropsProps, - $FunctionCustomPropsProps // If this generated mixin is undefined, it's likely because FunctionCustomPropsProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FunctionCustomPropsProps. + $FunctionCustomPropsProps // If this generated mixin is undefined, it's likely because FunctionCustomPropsProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FunctionCustomPropsProps, and check that $FunctionCustomPropsProps is exported/imported properly. { _$$FunctionCustomPropsProps._(); diff --git a/test/over_react/component/ref_util_test.over_react.g.dart b/test/over_react/component/ref_util_test.over_react.g.dart index 853fcf916..3590e228b 100644 --- a/test/over_react/component/ref_util_test.over_react.g.dart +++ b/test/over_react/component/ref_util_test.over_react.g.dart @@ -33,7 +33,7 @@ _$$BasicProps _$Basic([Map backingProps]) => backingProps == null abstract class _$$BasicProps extends UiProps with BasicProps, - $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. { _$$BasicProps._(); @@ -139,7 +139,7 @@ class _$BasicComponent extends BasicComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. BasicProps: $BasicProps.meta, }); } @@ -207,7 +207,7 @@ final UiFactoryConfig<_$$BasicUiFunctionProps> $BasicUiFunctionConfig = abstract class _$$BasicUiFunctionProps extends UiProps with BasicUiFunctionProps, - $BasicUiFunctionProps // If this generated mixin is undefined, it's likely because BasicUiFunctionProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicUiFunctionProps. + $BasicUiFunctionProps // If this generated mixin is undefined, it's likely because BasicUiFunctionProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicUiFunctionProps, and check that $BasicUiFunctionProps is exported/imported properly. { _$$BasicUiFunctionProps._(); @@ -281,7 +281,7 @@ final UiFactoryConfig<_$$SecondaryBasicUiFunctionProps> abstract class _$$SecondaryBasicUiFunctionProps extends UiProps with BasicUiFunctionProps, - $BasicUiFunctionProps // If this generated mixin is undefined, it's likely because BasicUiFunctionProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicUiFunctionProps. + $BasicUiFunctionProps // If this generated mixin is undefined, it's likely because BasicUiFunctionProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicUiFunctionProps, and check that $BasicUiFunctionProps is exported/imported properly. implements SecondaryBasicUiFunctionProps { _$$SecondaryBasicUiFunctionProps._(); diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/accessor_mixin_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/accessor_mixin_integration_test.over_react.g.dart index e7260192f..b06cf4768 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/accessor_mixin_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/accessor_mixin_integration_test.over_react.g.dart @@ -544,7 +544,7 @@ _$$TestPropsMixin _$Test([Map backingProps]) => backingProps == null abstract class _$$TestPropsMixin extends UiProps with TestPropsMixin, - $TestPropsMixin // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestPropsMixin. + $TestPropsMixin // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestPropsMixin, and check that $TestPropsMixin is exported/imported properly. { _$$TestPropsMixin._(); @@ -615,9 +615,9 @@ _$$TestCustomNamespaceProps _$TestCustomNamespace([Map backingProps]) => abstract class _$$TestCustomNamespaceProps extends UiProps with TestCustomNamespacePropsMixin, - $TestCustomNamespacePropsMixin, // If this generated mixin is undefined, it's likely because TestCustomNamespacePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestCustomNamespacePropsMixin. + $TestCustomNamespacePropsMixin, // If this generated mixin is undefined, it's likely because TestCustomNamespacePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestCustomNamespacePropsMixin, and check that $TestCustomNamespacePropsMixin is exported/imported properly. TestCustomNamespaceWithPropsAnnotationPropsMixin, - $TestCustomNamespaceWithPropsAnnotationPropsMixin // If this generated mixin is undefined, it's likely because TestCustomNamespaceWithPropsAnnotationPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestCustomNamespaceWithPropsAnnotationPropsMixin. + $TestCustomNamespaceWithPropsAnnotationPropsMixin // If this generated mixin is undefined, it's likely because TestCustomNamespaceWithPropsAnnotationPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestCustomNamespaceWithPropsAnnotationPropsMixin, and check that $TestCustomNamespaceWithPropsAnnotationPropsMixin is exported/imported properly. implements TestCustomNamespaceProps { _$$TestCustomNamespaceProps._(); diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/compact_hoc_syntax_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/compact_hoc_syntax_integration_test.over_react.g.dart index 247f7ebb4..5f9d20e21 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/compact_hoc_syntax_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/compact_hoc_syntax_integration_test.over_react.g.dart @@ -33,7 +33,7 @@ _$$FooProps _$Foo([Map backingProps]) => backingProps == null abstract class _$$FooProps extends UiProps with FooProps, - $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. { _$$FooProps._(); @@ -139,7 +139,7 @@ class _$FooComponent extends FooComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. FooProps: $FooProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_test.over_react.g.dart index 70aa54b0e..a959fb768 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_test.over_react.g.dart @@ -34,7 +34,7 @@ _$$ComponentTestProps _$ComponentTest([Map backingProps]) => abstract class _$$ComponentTestProps extends UiProps with ComponentTestProps, - $ComponentTestProps // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestProps. + $ComponentTestProps // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestProps, and check that $ComponentTestProps is exported/imported properly. { _$$ComponentTestProps._(); @@ -141,7 +141,7 @@ class _$ComponentTestComponent extends ComponentTestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestProps. + // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestProps, and check that $ComponentTestProps is exported/imported properly. ComponentTestProps: $ComponentTestProps.meta, }); } @@ -307,7 +307,7 @@ _$$IsErrorBoundaryProps _$IsErrorBoundary([Map backingProps]) => abstract class _$$IsErrorBoundaryProps extends UiProps with IsErrorBoundaryProps, - $IsErrorBoundaryProps // If this generated mixin is undefined, it's likely because IsErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of IsErrorBoundaryProps. + $IsErrorBoundaryProps // If this generated mixin is undefined, it's likely because IsErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of IsErrorBoundaryProps, and check that $IsErrorBoundaryProps is exported/imported properly. { _$$IsErrorBoundaryProps._(); @@ -414,7 +414,7 @@ class _$IsErrorBoundaryComponent extends IsErrorBoundaryComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because IsErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of IsErrorBoundaryProps. + // If this generated mixin is undefined, it's likely because IsErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of IsErrorBoundaryProps, and check that $IsErrorBoundaryProps is exported/imported properly. IsErrorBoundaryProps: $IsErrorBoundaryProps.meta, }); } @@ -465,7 +465,7 @@ _$$IsNotErrorBoundaryProps _$IsNotErrorBoundary([Map backingProps]) => abstract class _$$IsNotErrorBoundaryProps extends UiProps with IsNotErrorBoundaryProps, - $IsNotErrorBoundaryProps // If this generated mixin is undefined, it's likely because IsNotErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of IsNotErrorBoundaryProps. + $IsNotErrorBoundaryProps // If this generated mixin is undefined, it's likely because IsNotErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of IsNotErrorBoundaryProps, and check that $IsNotErrorBoundaryProps is exported/imported properly. { _$$IsNotErrorBoundaryProps._(); @@ -573,7 +573,7 @@ class _$IsNotErrorBoundaryComponent extends IsNotErrorBoundaryComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because IsNotErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of IsNotErrorBoundaryProps. + // If this generated mixin is undefined, it's likely because IsNotErrorBoundaryProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of IsNotErrorBoundaryProps, and check that $IsNotErrorBoundaryProps is exported/imported properly. IsNotErrorBoundaryProps: $IsNotErrorBoundaryProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_verbose_syntax_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_verbose_syntax_test.over_react.g.dart index 9c14567a8..524b3fe16 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_verbose_syntax_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/component_integration_verbose_syntax_test.over_react.g.dart @@ -34,9 +34,9 @@ _$$ComponentTestProps _$ComponentTest([Map backingProps]) => abstract class _$$ComponentTestProps extends UiProps with ComponentTestPropsMixin, - $ComponentTestPropsMixin, // If this generated mixin is undefined, it's likely because ComponentTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestPropsMixin. + $ComponentTestPropsMixin, // If this generated mixin is undefined, it's likely because ComponentTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestPropsMixin, and check that $ComponentTestPropsMixin is exported/imported properly. TestPropsMixin, - $TestPropsMixin // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestPropsMixin. + $TestPropsMixin // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestPropsMixin, and check that $TestPropsMixin is exported/imported properly. implements ComponentTestProps { _$$ComponentTestProps._(); @@ -144,9 +144,9 @@ class _$ComponentTestComponent extends ComponentTestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ComponentTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestPropsMixin. + // If this generated mixin is undefined, it's likely because ComponentTestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestPropsMixin, and check that $ComponentTestPropsMixin is exported/imported properly. ComponentTestPropsMixin: $ComponentTestPropsMixin.meta, - // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestPropsMixin. + // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestPropsMixin, and check that $TestPropsMixin is exported/imported properly. TestPropsMixin: $TestPropsMixin.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/constant_required_accessor_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/constant_required_accessor_integration_test.over_react.g.dart index 0a62ac8bb..6627cc4a1 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/constant_required_accessor_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/constant_required_accessor_integration_test.over_react.g.dart @@ -34,7 +34,7 @@ _$$ComponentTestProps _$ComponentTest([Map backingProps]) => abstract class _$$ComponentTestProps extends UiProps with ComponentTestProps, - $ComponentTestProps // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestProps. + $ComponentTestProps // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestProps, and check that $ComponentTestProps is exported/imported properly. { _$$ComponentTestProps._(); @@ -141,7 +141,7 @@ class _$ComponentTestComponent extends ComponentTestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestProps. + // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestProps, and check that $ComponentTestProps is exported/imported properly. ComponentTestProps: $ComponentTestProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/covariant_accessor_override_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/covariant_accessor_override_integration_test.over_react.g.dart index 98ff8ff16..e26230ab7 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/covariant_accessor_override_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/covariant_accessor_override_integration_test.over_react.g.dart @@ -78,9 +78,9 @@ _$$TestProps _$Test([Map backingProps]) => backingProps == null abstract class _$$TestProps extends UiProps with BasePropsMixin, - $BasePropsMixin, // If this generated mixin is undefined, it's likely because BasePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasePropsMixin. + $BasePropsMixin, // If this generated mixin is undefined, it's likely because BasePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasePropsMixin, and check that $BasePropsMixin is exported/imported properly. OverridePropsMixin, - $OverridePropsMixin // If this generated mixin is undefined, it's likely because OverridePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of OverridePropsMixin. + $OverridePropsMixin // If this generated mixin is undefined, it's likely because OverridePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of OverridePropsMixin, and check that $OverridePropsMixin is exported/imported properly. implements TestProps { _$$TestProps._(); diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/do_not_generate_accessor_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/do_not_generate_accessor_integration_test.over_react.g.dart index c1e1f2c0d..0d8e3f775 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/do_not_generate_accessor_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/do_not_generate_accessor_integration_test.over_react.g.dart @@ -35,7 +35,7 @@ _$$DoNotGenerateAccessorTestProps _$DoNotGenerateAccessorTest( abstract class _$$DoNotGenerateAccessorTestProps extends UiProps with DoNotGenerateAccessorTestProps, - $DoNotGenerateAccessorTestProps // If this generated mixin is undefined, it's likely because DoNotGenerateAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of DoNotGenerateAccessorTestProps. + $DoNotGenerateAccessorTestProps // If this generated mixin is undefined, it's likely because DoNotGenerateAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of DoNotGenerateAccessorTestProps, and check that $DoNotGenerateAccessorTestProps is exported/imported properly. { _$$DoNotGenerateAccessorTestProps._(); @@ -108,7 +108,7 @@ class _$$DoNotGenerateAccessorTestProps$JsMap abstract class _$$DoNotGenerateAccessorTestState extends UiState with DoNotGenerateAccessorTestState, - $DoNotGenerateAccessorTestState // If this generated mixin is undefined, it's likely because DoNotGenerateAccessorTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of DoNotGenerateAccessorTestState. + $DoNotGenerateAccessorTestState // If this generated mixin is undefined, it's likely because DoNotGenerateAccessorTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of DoNotGenerateAccessorTestState, and check that $DoNotGenerateAccessorTestState is exported/imported properly. { _$$DoNotGenerateAccessorTestState._(); @@ -233,7 +233,7 @@ class _$DoNotGenerateAccessorTestComponent @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because DoNotGenerateAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of DoNotGenerateAccessorTestProps. + // If this generated mixin is undefined, it's likely because DoNotGenerateAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of DoNotGenerateAccessorTestProps, and check that $DoNotGenerateAccessorTestProps is exported/imported properly. DoNotGenerateAccessorTestProps: $DoNotGenerateAccessorTestProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.over_react.g.dart index 33d4e536e..a3a06d43e 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.over_react.g.dart @@ -135,7 +135,7 @@ final UiFactoryConfig<_$$TestProps> $_TestConfig = UiFactoryConfig( abstract class _$$TestProps extends UiProps with TestProps, - $TestProps // If this generated mixin is undefined, it's likely because TestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestProps. + $TestProps // If this generated mixin is undefined, it's likely because TestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestProps, and check that $TestProps is exported/imported properly. { _$$TestProps._(); diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/namespaced_accessor_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/namespaced_accessor_integration_test.over_react.g.dart index 9c328e335..08b1a867a 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/namespaced_accessor_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/namespaced_accessor_integration_test.over_react.g.dart @@ -34,7 +34,7 @@ _$$NamespacedAccessorTestProps _$NamespacedAccessorTest([Map backingProps]) => abstract class _$$NamespacedAccessorTestProps extends UiProps with NamespacedAccessorTestProps, - $NamespacedAccessorTestProps // If this generated mixin is undefined, it's likely because NamespacedAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of NamespacedAccessorTestProps. + $NamespacedAccessorTestProps // If this generated mixin is undefined, it's likely because NamespacedAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of NamespacedAccessorTestProps, and check that $NamespacedAccessorTestProps is exported/imported properly. { _$$NamespacedAccessorTestProps._(); @@ -107,7 +107,7 @@ class _$$NamespacedAccessorTestProps$JsMap abstract class _$$NamespacedAccessorTestState extends UiState with NamespacedAccessorTestState, - $NamespacedAccessorTestState // If this generated mixin is undefined, it's likely because NamespacedAccessorTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of NamespacedAccessorTestState. + $NamespacedAccessorTestState // If this generated mixin is undefined, it's likely because NamespacedAccessorTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of NamespacedAccessorTestState, and check that $NamespacedAccessorTestState is exported/imported properly. { _$$NamespacedAccessorTestState._(); @@ -232,7 +232,7 @@ class _$NamespacedAccessorTestComponent @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because NamespacedAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of NamespacedAccessorTestProps. + // If this generated mixin is undefined, it's likely because NamespacedAccessorTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of NamespacedAccessorTestProps, and check that $NamespacedAccessorTestProps is exported/imported properly. NamespacedAccessorTestProps: $NamespacedAccessorTestProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/private_props_ddc_bug.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/private_props_ddc_bug.over_react.g.dart index 303e2f87f..23aebe1d2 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/private_props_ddc_bug.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/private_props_ddc_bug.over_react.g.dart @@ -33,7 +33,7 @@ _$$FooProps _$Foo([Map backingProps]) => backingProps == null abstract class _$$FooProps extends UiProps with FooProps, - $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. { _$$FooProps._(); @@ -139,7 +139,7 @@ class _$FooComponent extends FooComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. FooProps: $FooProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_map_view_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_map_view_test.over_react.g.dart index 817c72682..d5149259c 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_map_view_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_map_view_test.over_react.g.dart @@ -118,7 +118,7 @@ _$$TestProps _$Test([Map backingProps]) => backingProps == null abstract class _$$TestProps extends UiProps with TestProps, - $TestProps // If this generated mixin is undefined, it's likely because TestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestProps. + $TestProps // If this generated mixin is undefined, it's likely because TestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestProps, and check that $TestProps is exported/imported properly. { _$$TestProps._(); diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_meta_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_meta_test.over_react.g.dart index 011955b1a..c305a85f1 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_meta_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/props_meta_test.over_react.g.dart @@ -33,11 +33,11 @@ _$$TestProps _$Test([Map backingProps]) => backingProps == null abstract class _$$TestProps extends UiProps with TestPropsMixin, - $TestPropsMixin, // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestPropsMixin. + $TestPropsMixin, // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestPropsMixin, and check that $TestPropsMixin is exported/imported properly. FooPropsMixin, - $FooPropsMixin, // If this generated mixin is undefined, it's likely because FooPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooPropsMixin. + $FooPropsMixin, // If this generated mixin is undefined, it's likely because FooPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooPropsMixin, and check that $FooPropsMixin is exported/imported properly. BazPropsMixin, - $BazPropsMixin // If this generated mixin is undefined, it's likely because BazPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BazPropsMixin. + $BazPropsMixin // If this generated mixin is undefined, it's likely because BazPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BazPropsMixin, and check that $BazPropsMixin is exported/imported properly. implements TestProps { _$$TestProps._(); @@ -144,11 +144,11 @@ class _$TestComponent extends TestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TestPropsMixin. + // If this generated mixin is undefined, it's likely because TestPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TestPropsMixin, and check that $TestPropsMixin is exported/imported properly. TestPropsMixin: $TestPropsMixin.meta, - // If this generated mixin is undefined, it's likely because FooPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooPropsMixin. + // If this generated mixin is undefined, it's likely because FooPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooPropsMixin, and check that $FooPropsMixin is exported/imported properly. FooPropsMixin: $FooPropsMixin.meta, - // If this generated mixin is undefined, it's likely because BazPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BazPropsMixin. + // If this generated mixin is undefined, it's likely because BazPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BazPropsMixin, and check that $BazPropsMixin is exported/imported properly. BazPropsMixin: $BazPropsMixin.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/required_accessor_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/required_accessor_integration_test.over_react.g.dart index cdd844859..b718df67c 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/required_accessor_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/required_accessor_integration_test.over_react.g.dart @@ -34,7 +34,7 @@ _$$ComponentTestProps _$ComponentTest([Map backingProps]) => abstract class _$$ComponentTestProps extends UiProps with ComponentTestProps, - $ComponentTestProps // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestProps. + $ComponentTestProps // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestProps, and check that $ComponentTestProps is exported/imported properly. { _$$ComponentTestProps._(); @@ -141,7 +141,7 @@ class _$ComponentTestComponent extends ComponentTestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ComponentTestProps. + // If this generated mixin is undefined, it's likely because ComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ComponentTestProps, and check that $ComponentTestProps is exported/imported properly. ComponentTestProps: $ComponentTestProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/stateful_component_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/stateful_component_integration_test.over_react.g.dart index 01e88322e..52173b079 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/stateful_component_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/stateful_component_integration_test.over_react.g.dart @@ -34,7 +34,7 @@ _$$StatefulComponentTestProps _$StatefulComponentTest([Map backingProps]) => abstract class _$$StatefulComponentTestProps extends UiProps with StatefulComponentTestProps, - $StatefulComponentTestProps // If this generated mixin is undefined, it's likely because StatefulComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of StatefulComponentTestProps. + $StatefulComponentTestProps // If this generated mixin is undefined, it's likely because StatefulComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of StatefulComponentTestProps, and check that $StatefulComponentTestProps is exported/imported properly. { _$$StatefulComponentTestProps._(); @@ -107,7 +107,7 @@ class _$$StatefulComponentTestProps$JsMap abstract class _$$StatefulComponentTestState extends UiState with StatefulComponentTestState, - $StatefulComponentTestState // If this generated mixin is undefined, it's likely because StatefulComponentTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of StatefulComponentTestState. + $StatefulComponentTestState // If this generated mixin is undefined, it's likely because StatefulComponentTestState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of StatefulComponentTestState, and check that $StatefulComponentTestState is exported/imported properly. { _$$StatefulComponentTestState._(); @@ -231,7 +231,7 @@ class _$StatefulComponentTestComponent extends StatefulComponentTestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because StatefulComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of StatefulComponentTestProps. + // If this generated mixin is undefined, it's likely because StatefulComponentTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of StatefulComponentTestProps, and check that $StatefulComponentTestProps is exported/imported properly. StatefulComponentTestProps: $StatefulComponentTestProps.meta, }); } diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/unassigned_prop_integration_test.over_react.g.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/unassigned_prop_integration_test.over_react.g.dart index bb126c3c3..0a470902a 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/unassigned_prop_integration_test.over_react.g.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/unassigned_prop_integration_test.over_react.g.dart @@ -33,7 +33,7 @@ _$$FooProps _$Foo([Map backingProps]) => backingProps == null abstract class _$$FooProps extends UiProps with FooProps, - $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. { _$$FooProps._(); @@ -139,7 +139,7 @@ class _$FooComponent extends FooComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. FooProps: $FooProps.meta, }); } diff --git a/web/component2/src/demo_components/button.over_react.g.dart b/web/component2/src/demo_components/button.over_react.g.dart index b2d8e478c..0a500172c 100644 --- a/web/component2/src/demo_components/button.over_react.g.dart +++ b/web/component2/src/demo_components/button.over_react.g.dart @@ -33,7 +33,7 @@ _$$ButtonProps _$Button([Map backingProps]) => backingProps == null abstract class _$$ButtonProps extends UiProps with ButtonProps, - $ButtonProps // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonProps. + $ButtonProps // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonProps, and check that $ButtonProps is exported/imported properly. { _$$ButtonProps._(); @@ -104,7 +104,7 @@ class _$$ButtonProps$JsMap extends _$$ButtonProps { abstract class _$$ButtonState extends UiState with ButtonState, - $ButtonState // If this generated mixin is undefined, it's likely because ButtonState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonState. + $ButtonState // If this generated mixin is undefined, it's likely because ButtonState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonState, and check that $ButtonState is exported/imported properly. { _$$ButtonState._(); @@ -224,7 +224,7 @@ class _$ButtonComponent extends ButtonComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonProps. + // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonProps, and check that $ButtonProps is exported/imported properly. ButtonProps: $ButtonProps.meta, }); } diff --git a/web/component2/src/demo_components/button_group.over_react.g.dart b/web/component2/src/demo_components/button_group.over_react.g.dart index 4d2008d12..ecb186058 100644 --- a/web/component2/src/demo_components/button_group.over_react.g.dart +++ b/web/component2/src/demo_components/button_group.over_react.g.dart @@ -33,7 +33,7 @@ _$$ButtonGroupProps _$ButtonGroup([Map backingProps]) => backingProps == null abstract class _$$ButtonGroupProps extends UiProps with ButtonGroupProps, - $ButtonGroupProps // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonGroupProps. + $ButtonGroupProps // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonGroupProps, and check that $ButtonGroupProps is exported/imported properly. { _$$ButtonGroupProps._(); @@ -104,7 +104,7 @@ class _$$ButtonGroupProps$JsMap extends _$$ButtonGroupProps { abstract class _$$ButtonGroupState extends UiState with ButtonGroupState, - $ButtonGroupState // If this generated mixin is undefined, it's likely because ButtonGroupState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonGroupState. + $ButtonGroupState // If this generated mixin is undefined, it's likely because ButtonGroupState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonGroupState, and check that $ButtonGroupState is exported/imported properly. { _$$ButtonGroupState._(); @@ -224,7 +224,7 @@ class _$ButtonGroupComponent extends ButtonGroupComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonGroupProps. + // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonGroupProps, and check that $ButtonGroupProps is exported/imported properly. ButtonGroupProps: $ButtonGroupProps.meta, }); } diff --git a/web/component2/src/demo_components/list_group.over_react.g.dart b/web/component2/src/demo_components/list_group.over_react.g.dart index 7e4f263d8..3befc6f44 100644 --- a/web/component2/src/demo_components/list_group.over_react.g.dart +++ b/web/component2/src/demo_components/list_group.over_react.g.dart @@ -33,7 +33,7 @@ _$$ListGroupProps _$ListGroup([Map backingProps]) => backingProps == null abstract class _$$ListGroupProps extends UiProps with ListGroupProps, - $ListGroupProps // If this generated mixin is undefined, it's likely because ListGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ListGroupProps. + $ListGroupProps // If this generated mixin is undefined, it's likely because ListGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ListGroupProps, and check that $ListGroupProps is exported/imported properly. { _$$ListGroupProps._(); @@ -140,7 +140,7 @@ class _$ListGroupComponent extends ListGroupComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ListGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ListGroupProps. + // If this generated mixin is undefined, it's likely because ListGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ListGroupProps, and check that $ListGroupProps is exported/imported properly. ListGroupProps: $ListGroupProps.meta, }); } diff --git a/web/component2/src/demo_components/list_group_item.over_react.g.dart b/web/component2/src/demo_components/list_group_item.over_react.g.dart index 1768718f0..3934b8f0a 100644 --- a/web/component2/src/demo_components/list_group_item.over_react.g.dart +++ b/web/component2/src/demo_components/list_group_item.over_react.g.dart @@ -34,7 +34,7 @@ _$$ListGroupItemProps _$ListGroupItem([Map backingProps]) => abstract class _$$ListGroupItemProps extends UiProps with ListGroupItemProps, - $ListGroupItemProps // If this generated mixin is undefined, it's likely because ListGroupItemProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ListGroupItemProps. + $ListGroupItemProps // If this generated mixin is undefined, it's likely because ListGroupItemProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ListGroupItemProps, and check that $ListGroupItemProps is exported/imported properly. { _$$ListGroupItemProps._(); @@ -141,7 +141,7 @@ class _$ListGroupItemComponent extends ListGroupItemComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ListGroupItemProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ListGroupItemProps. + // If this generated mixin is undefined, it's likely because ListGroupItemProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ListGroupItemProps, and check that $ListGroupItemProps is exported/imported properly. ListGroupItemProps: $ListGroupItemProps.meta, }); } diff --git a/web/component2/src/demo_components/progress.over_react.g.dart b/web/component2/src/demo_components/progress.over_react.g.dart index 4e09709b5..bc9204f94 100644 --- a/web/component2/src/demo_components/progress.over_react.g.dart +++ b/web/component2/src/demo_components/progress.over_react.g.dart @@ -33,7 +33,7 @@ _$$ProgressProps _$Progress([Map backingProps]) => backingProps == null abstract class _$$ProgressProps extends UiProps with ProgressProps, - $ProgressProps // If this generated mixin is undefined, it's likely because ProgressProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ProgressProps. + $ProgressProps // If this generated mixin is undefined, it's likely because ProgressProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ProgressProps, and check that $ProgressProps is exported/imported properly. { _$$ProgressProps._(); @@ -104,7 +104,7 @@ class _$$ProgressProps$JsMap extends _$$ProgressProps { abstract class _$$ProgressState extends UiState with ProgressState, - $ProgressState // If this generated mixin is undefined, it's likely because ProgressState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ProgressState. + $ProgressState // If this generated mixin is undefined, it's likely because ProgressState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ProgressState, and check that $ProgressState is exported/imported properly. { _$$ProgressState._(); @@ -224,7 +224,7 @@ class _$ProgressComponent extends ProgressComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ProgressProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ProgressProps. + // If this generated mixin is undefined, it's likely because ProgressProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ProgressProps, and check that $ProgressProps is exported/imported properly. ProgressProps: $ProgressProps.meta, }); } diff --git a/web/component2/src/demo_components/prop_validation.over_react.g.dart b/web/component2/src/demo_components/prop_validation.over_react.g.dart index f71665975..00880546b 100644 --- a/web/component2/src/demo_components/prop_validation.over_react.g.dart +++ b/web/component2/src/demo_components/prop_validation.over_react.g.dart @@ -34,7 +34,7 @@ _$$PropTypesTestProps _$PropTypesTest([Map backingProps]) => abstract class _$$PropTypesTestProps extends UiProps with PropTypesTestProps, - $PropTypesTestProps // If this generated mixin is undefined, it's likely because PropTypesTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of PropTypesTestProps. + $PropTypesTestProps // If this generated mixin is undefined, it's likely because PropTypesTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of PropTypesTestProps, and check that $PropTypesTestProps is exported/imported properly. { _$$PropTypesTestProps._(); @@ -141,7 +141,7 @@ class _$PropTypesTestComponent extends PropTypesTestComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because PropTypesTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of PropTypesTestProps. + // If this generated mixin is undefined, it's likely because PropTypesTestProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of PropTypesTestProps, and check that $PropTypesTestProps is exported/imported properly. PropTypesTestProps: $PropTypesTestProps.meta, }); } diff --git a/web/component2/src/demo_components/prop_validation_wrap.over_react.g.dart b/web/component2/src/demo_components/prop_validation_wrap.over_react.g.dart index 730729807..2bb104b68 100644 --- a/web/component2/src/demo_components/prop_validation_wrap.over_react.g.dart +++ b/web/component2/src/demo_components/prop_validation_wrap.over_react.g.dart @@ -34,7 +34,7 @@ _$$PropTypesWrapProps _$PropTypesWrap([Map backingProps]) => abstract class _$$PropTypesWrapProps extends UiProps with PropTypesWrapProps, - $PropTypesWrapProps // If this generated mixin is undefined, it's likely because PropTypesWrapProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of PropTypesWrapProps. + $PropTypesWrapProps // If this generated mixin is undefined, it's likely because PropTypesWrapProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of PropTypesWrapProps, and check that $PropTypesWrapProps is exported/imported properly. { _$$PropTypesWrapProps._(); @@ -105,7 +105,7 @@ class _$$PropTypesWrapProps$JsMap extends _$$PropTypesWrapProps { abstract class _$$PropTypesWrapState extends UiState with PropTypesWrapState, - $PropTypesWrapState // If this generated mixin is undefined, it's likely because PropTypesWrapState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of PropTypesWrapState. + $PropTypesWrapState // If this generated mixin is undefined, it's likely because PropTypesWrapState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of PropTypesWrapState, and check that $PropTypesWrapState is exported/imported properly. { _$$PropTypesWrapState._(); @@ -225,7 +225,7 @@ class _$PropTypesWrapComponent extends PropTypesWrapComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because PropTypesWrapProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of PropTypesWrapProps. + // If this generated mixin is undefined, it's likely because PropTypesWrapProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of PropTypesWrapProps, and check that $PropTypesWrapProps is exported/imported properly. PropTypesWrapProps: $PropTypesWrapProps.meta, }); } diff --git a/web/component2/src/demo_components/tag.over_react.g.dart b/web/component2/src/demo_components/tag.over_react.g.dart index d4002baa0..30a1bff36 100644 --- a/web/component2/src/demo_components/tag.over_react.g.dart +++ b/web/component2/src/demo_components/tag.over_react.g.dart @@ -33,7 +33,7 @@ _$$TagProps _$Tag([Map backingProps]) => backingProps == null abstract class _$$TagProps extends UiProps with TagProps, - $TagProps // If this generated mixin is undefined, it's likely because TagProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TagProps. + $TagProps // If this generated mixin is undefined, it's likely because TagProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TagProps, and check that $TagProps is exported/imported properly. { _$$TagProps._(); @@ -139,7 +139,7 @@ class _$TagComponent extends TagComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because TagProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of TagProps. + // If this generated mixin is undefined, it's likely because TagProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of TagProps, and check that $TagProps is exported/imported properly. TagProps: $TagProps.meta, }); } diff --git a/web/component2/src/demo_components/toggle_button.over_react.g.dart b/web/component2/src/demo_components/toggle_button.over_react.g.dart index 4d5c07666..21dd1525e 100644 --- a/web/component2/src/demo_components/toggle_button.over_react.g.dart +++ b/web/component2/src/demo_components/toggle_button.over_react.g.dart @@ -34,11 +34,11 @@ _$$ToggleButtonProps _$ToggleButton([Map backingProps]) => backingProps == null abstract class _$$ToggleButtonProps extends UiProps with ButtonProps, - $ButtonProps, // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonProps. + $ButtonProps, // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonProps, and check that $ButtonProps is exported/imported properly. ToggleButtonPropsMixin, - $ToggleButtonPropsMixin, // If this generated mixin is undefined, it's likely because ToggleButtonPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ToggleButtonPropsMixin. + $ToggleButtonPropsMixin, // If this generated mixin is undefined, it's likely because ToggleButtonPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ToggleButtonPropsMixin, and check that $ToggleButtonPropsMixin is exported/imported properly. AbstractInputPropsMixin, - $AbstractInputPropsMixin // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of AbstractInputPropsMixin. + $AbstractInputPropsMixin // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of AbstractInputPropsMixin, and check that $AbstractInputPropsMixin is exported/imported properly. implements ToggleButtonProps { _$$ToggleButtonProps._(); @@ -110,11 +110,11 @@ class _$$ToggleButtonProps$JsMap extends _$$ToggleButtonProps { abstract class _$$ToggleButtonState extends UiState with ButtonState, - $ButtonState, // If this generated mixin is undefined, it's likely because ButtonState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonState. + $ButtonState, // If this generated mixin is undefined, it's likely because ButtonState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonState, and check that $ButtonState is exported/imported properly. ToggleButtonStateMixin, - $ToggleButtonStateMixin, // If this generated mixin is undefined, it's likely because ToggleButtonStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ToggleButtonStateMixin. + $ToggleButtonStateMixin, // If this generated mixin is undefined, it's likely because ToggleButtonStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ToggleButtonStateMixin, and check that $ToggleButtonStateMixin is exported/imported properly. AbstractInputStateMixin, - $AbstractInputStateMixin // If this generated mixin is undefined, it's likely because AbstractInputStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of AbstractInputStateMixin. + $AbstractInputStateMixin // If this generated mixin is undefined, it's likely because AbstractInputStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of AbstractInputStateMixin, and check that $AbstractInputStateMixin is exported/imported properly. implements ToggleButtonState { _$$ToggleButtonState._(); @@ -235,11 +235,11 @@ class _$ToggleButtonComponent extends ToggleButtonComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonProps. + // If this generated mixin is undefined, it's likely because ButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonProps, and check that $ButtonProps is exported/imported properly. ButtonProps: $ButtonProps.meta, - // If this generated mixin is undefined, it's likely because ToggleButtonPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ToggleButtonPropsMixin. + // If this generated mixin is undefined, it's likely because ToggleButtonPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ToggleButtonPropsMixin, and check that $ToggleButtonPropsMixin is exported/imported properly. ToggleButtonPropsMixin: $ToggleButtonPropsMixin.meta, - // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of AbstractInputPropsMixin. + // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of AbstractInputPropsMixin, and check that $AbstractInputPropsMixin is exported/imported properly. AbstractInputPropsMixin: $AbstractInputPropsMixin.meta, }); } diff --git a/web/component2/src/demo_components/toggle_button_group.over_react.g.dart b/web/component2/src/demo_components/toggle_button_group.over_react.g.dart index 6d51745b3..dcda1bea4 100644 --- a/web/component2/src/demo_components/toggle_button_group.over_react.g.dart +++ b/web/component2/src/demo_components/toggle_button_group.over_react.g.dart @@ -35,9 +35,9 @@ _$$ToggleButtonGroupProps _$ToggleButtonGroup([Map backingProps]) => abstract class _$$ToggleButtonGroupProps extends UiProps with ButtonGroupProps, - $ButtonGroupProps, // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonGroupProps. + $ButtonGroupProps, // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonGroupProps, and check that $ButtonGroupProps is exported/imported properly. AbstractInputPropsMixin, - $AbstractInputPropsMixin // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of AbstractInputPropsMixin. + $AbstractInputPropsMixin // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of AbstractInputPropsMixin, and check that $AbstractInputPropsMixin is exported/imported properly. implements ToggleButtonGroupProps { _$$ToggleButtonGroupProps._(); @@ -109,9 +109,9 @@ class _$$ToggleButtonGroupProps$JsMap extends _$$ToggleButtonGroupProps { abstract class _$$ToggleButtonGroupState extends UiState with ButtonGroupState, - $ButtonGroupState, // If this generated mixin is undefined, it's likely because ButtonGroupState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonGroupState. + $ButtonGroupState, // If this generated mixin is undefined, it's likely because ButtonGroupState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonGroupState, and check that $ButtonGroupState is exported/imported properly. AbstractInputStateMixin, - $AbstractInputStateMixin // If this generated mixin is undefined, it's likely because AbstractInputStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of AbstractInputStateMixin. + $AbstractInputStateMixin // If this generated mixin is undefined, it's likely because AbstractInputStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of AbstractInputStateMixin, and check that $AbstractInputStateMixin is exported/imported properly. implements ToggleButtonGroupState { _$$ToggleButtonGroupState._(); @@ -232,9 +232,9 @@ class _$ToggleButtonGroupComponent extends ToggleButtonGroupComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ButtonGroupProps. + // If this generated mixin is undefined, it's likely because ButtonGroupProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ButtonGroupProps, and check that $ButtonGroupProps is exported/imported properly. ButtonGroupProps: $ButtonGroupProps.meta, - // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of AbstractInputPropsMixin. + // If this generated mixin is undefined, it's likely because AbstractInputPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of AbstractInputPropsMixin, and check that $AbstractInputPropsMixin is exported/imported properly. AbstractInputPropsMixin: $AbstractInputPropsMixin.meta, }); } diff --git a/web/component2/src/demos/ref.over_react.g.dart b/web/component2/src/demos/ref.over_react.g.dart index a2880592b..da5f75b9f 100644 --- a/web/component2/src/demos/ref.over_react.g.dart +++ b/web/component2/src/demos/ref.over_react.g.dart @@ -33,7 +33,7 @@ _$$FooProps _$_Foo([Map backingProps]) => backingProps == null abstract class _$$FooProps extends UiProps with FooProps, - $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. { _$$FooProps._(); @@ -139,7 +139,7 @@ class _$FooComponent extends FooComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. FooProps: $FooProps.meta, }); } @@ -170,7 +170,7 @@ _$$LogProps _$_Log([Map backingProps]) => backingProps == null abstract class _$$LogProps extends UiProps with LogProps, - $LogProps // If this generated mixin is undefined, it's likely because LogProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of LogProps. + $LogProps // If this generated mixin is undefined, it's likely because LogProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of LogProps, and check that $LogProps is exported/imported properly. { _$$LogProps._(); @@ -276,7 +276,7 @@ class _$_LogComponent extends _LogComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because LogProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of LogProps. + // If this generated mixin is undefined, it's likely because LogProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of LogProps, and check that $LogProps is exported/imported properly. LogProps: $LogProps.meta, }); } @@ -553,7 +553,7 @@ final UiFactoryConfig<_$$FancyButtonProps> $FancyButtonConfig = UiFactoryConfig( abstract class _$$FancyButtonProps extends UiProps with FancyButtonProps, - $FancyButtonProps // If this generated mixin is undefined, it's likely because FancyButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FancyButtonProps. + $FancyButtonProps // If this generated mixin is undefined, it's likely because FancyButtonProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FancyButtonProps, and check that $FancyButtonProps is exported/imported properly. { _$$FancyButtonProps._(); @@ -626,9 +626,9 @@ final UiFactoryConfig<_$$Foo2Props> $Foo2Config = UiFactoryConfig( abstract class _$$Foo2Props extends UiProps with AnotherPropsMixin, - $AnotherPropsMixin, // If this generated mixin is undefined, it's likely because AnotherPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of AnotherPropsMixin. + $AnotherPropsMixin, // If this generated mixin is undefined, it's likely because AnotherPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of AnotherPropsMixin, and check that $AnotherPropsMixin is exported/imported properly. FooProps, - $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FooProps. + $FooProps // If this generated mixin is undefined, it's likely because FooProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FooProps, and check that $FooProps is exported/imported properly. implements Foo2Props { _$$Foo2Props._(); @@ -702,7 +702,7 @@ final UiFactoryConfig<_$$BazProps> $BazConfig = UiFactoryConfig( abstract class _$$BazProps extends UiProps with BazProps, - $BazProps // If this generated mixin is undefined, it's likely because BazProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BazProps. + $BazProps // If this generated mixin is undefined, it's likely because BazProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BazProps, and check that $BazProps is exported/imported properly. { _$$BazProps._(); @@ -776,7 +776,7 @@ final UiFactoryConfig<_$$RefDemoProps> $RefDemoContainerConfig = abstract class _$$RefDemoProps extends UiProps with RefDemoProps, - $RefDemoProps // If this generated mixin is undefined, it's likely because RefDemoProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of RefDemoProps. + $RefDemoProps // If this generated mixin is undefined, it's likely because RefDemoProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of RefDemoProps, and check that $RefDemoProps is exported/imported properly. { _$$RefDemoProps._(); @@ -850,7 +850,7 @@ final UiFactoryConfig<_$$RefDemoSectionProps> $RefDemoSectionConfig = abstract class _$$RefDemoSectionProps extends UiProps with RefDemoSectionProps, - $RefDemoSectionProps // If this generated mixin is undefined, it's likely because RefDemoSectionProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of RefDemoSectionProps. + $RefDemoSectionProps // If this generated mixin is undefined, it's likely because RefDemoSectionProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of RefDemoSectionProps, and check that $RefDemoSectionProps is exported/imported properly. { _$$RefDemoSectionProps._(); @@ -923,7 +923,7 @@ final UiFactoryConfig<_$$RefDemoHocProps> $RefDemoHocConfig = UiFactoryConfig( abstract class _$$RefDemoHocProps extends UiProps with RefDemoHocProps, - $RefDemoHocProps // If this generated mixin is undefined, it's likely because RefDemoHocProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of RefDemoHocProps. + $RefDemoHocProps // If this generated mixin is undefined, it's likely because RefDemoHocProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of RefDemoHocProps, and check that $RefDemoHocProps is exported/imported properly. { _$$RefDemoHocProps._(); diff --git a/web/flux_to_redux/advanced/components/little_block.over_react.g.dart b/web/flux_to_redux/advanced/components/little_block.over_react.g.dart index 3a04d86c2..ba7689b62 100644 --- a/web/flux_to_redux/advanced/components/little_block.over_react.g.dart +++ b/web/flux_to_redux/advanced/components/little_block.over_react.g.dart @@ -33,7 +33,7 @@ _$$LittleBlockProps _$LittleBlock([Map backingProps]) => backingProps == null abstract class _$$LittleBlockProps extends UiProps with LittleBlockProps, - $LittleBlockProps // If this generated mixin is undefined, it's likely because LittleBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of LittleBlockProps. + $LittleBlockProps // If this generated mixin is undefined, it's likely because LittleBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of LittleBlockProps, and check that $LittleBlockProps is exported/imported properly. { _$$LittleBlockProps._(); @@ -140,7 +140,7 @@ class _$LittleBlockComponent extends LittleBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because LittleBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of LittleBlockProps. + // If this generated mixin is undefined, it's likely because LittleBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of LittleBlockProps, and check that $LittleBlockProps is exported/imported properly. LittleBlockProps: $LittleBlockProps.meta, }); } diff --git a/web/flux_to_redux/advanced/examples/flux_implementation/components/big_block.over_react.g.dart b/web/flux_to_redux/advanced/examples/flux_implementation/components/big_block.over_react.g.dart index dae68b0e7..4be7a0802 100644 --- a/web/flux_to_redux/advanced/examples/flux_implementation/components/big_block.over_react.g.dart +++ b/web/flux_to_redux/advanced/examples/flux_implementation/components/big_block.over_react.g.dart @@ -34,9 +34,9 @@ abstract class _$$BigBlockProps extends UiProps with FluxUiPropsMixin, $FluxUiPropsMixin, // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + RandomColorStore>, // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. BigBlockPropsMixin, - $BigBlockPropsMixin // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BigBlockPropsMixin. + $BigBlockPropsMixin // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BigBlockPropsMixin, and check that $BigBlockPropsMixin is exported/imported properly. implements BigBlockProps { _$$BigBlockProps._(); @@ -144,9 +144,9 @@ class _$BigBlockComponent extends BigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. FluxUiPropsMixin: $FluxUiPropsMixin.meta, - // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BigBlockPropsMixin. + // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BigBlockPropsMixin, and check that $BigBlockPropsMixin is exported/imported properly. BigBlockPropsMixin: $BigBlockPropsMixin.meta, }); } diff --git a/web/flux_to_redux/advanced/examples/influx_implementation/components/big_block.over_react.g.dart b/web/flux_to_redux/advanced/examples/influx_implementation/components/big_block.over_react.g.dart index 8f6a2fe01..e1c170caf 100644 --- a/web/flux_to_redux/advanced/examples/influx_implementation/components/big_block.over_react.g.dart +++ b/web/flux_to_redux/advanced/examples/influx_implementation/components/big_block.over_react.g.dart @@ -34,9 +34,9 @@ abstract class _$$BigBlockProps extends UiProps with FluxUiPropsMixin, $FluxUiPropsMixin, // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + RandomColorStore>, // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. BigBlockPropsMixin, - $BigBlockPropsMixin // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BigBlockPropsMixin. + $BigBlockPropsMixin // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BigBlockPropsMixin, and check that $BigBlockPropsMixin is exported/imported properly. implements BigBlockProps { _$$BigBlockProps._(); @@ -144,9 +144,9 @@ class _$BigBlockComponent extends BigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. FluxUiPropsMixin: $FluxUiPropsMixin.meta, - // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BigBlockPropsMixin. + // If this generated mixin is undefined, it's likely because BigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BigBlockPropsMixin, and check that $BigBlockPropsMixin is exported/imported properly. BigBlockPropsMixin: $BigBlockPropsMixin.meta, }); } diff --git a/web/flux_to_redux/advanced/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart b/web/flux_to_redux/advanced/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart index da5e09840..1f62b7f8a 100644 --- a/web/flux_to_redux/advanced/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart +++ b/web/flux_to_redux/advanced/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart @@ -34,9 +34,9 @@ _$$ConnectFluxBigBlockProps _$ConnectFluxBigBlock([Map backingProps]) => abstract class _$$ConnectFluxBigBlockProps extends UiProps with ConnectFluxBigBlockPropsMixin, - $ConnectFluxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectFluxBigBlockPropsMixin. + $ConnectFluxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectFluxBigBlockPropsMixin, and check that $ConnectFluxBigBlockPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements ConnectFluxBigBlockProps { _$$ConnectFluxBigBlockProps._(); @@ -145,9 +145,9 @@ class _$ConnectFluxBigBlockComponent extends ConnectFluxBigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectFluxBigBlockPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectFluxBigBlockPropsMixin, and check that $ConnectFluxBigBlockPropsMixin is exported/imported properly. ConnectFluxBigBlockPropsMixin: $ConnectFluxBigBlockPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/flux_to_redux/advanced/examples/influx_implementation/components/redux_big_block.over_react.g.dart b/web/flux_to_redux/advanced/examples/influx_implementation/components/redux_big_block.over_react.g.dart index 1ab85ebdc..874c545c1 100644 --- a/web/flux_to_redux/advanced/examples/influx_implementation/components/redux_big_block.over_react.g.dart +++ b/web/flux_to_redux/advanced/examples/influx_implementation/components/redux_big_block.over_react.g.dart @@ -34,9 +34,9 @@ _$$ReduxBigBlockProps _$ReduxBigBlock([Map backingProps]) => abstract class _$$ReduxBigBlockProps extends UiProps with ReduxBigBlockPropsMixin, - $ReduxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ReduxBigBlockPropsMixin. + $ReduxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ReduxBigBlockPropsMixin, and check that $ReduxBigBlockPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements ReduxBigBlockProps { _$$ReduxBigBlockProps._(); @@ -144,9 +144,9 @@ class _$ReduxBigBlockComponent extends ReduxBigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ReduxBigBlockPropsMixin. + // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ReduxBigBlockPropsMixin, and check that $ReduxBigBlockPropsMixin is exported/imported properly. ReduxBigBlockPropsMixin: $ReduxBigBlockPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/flux_to_redux/advanced/examples/influx_implementation/components/should_not_update.over_react.g.dart b/web/flux_to_redux/advanced/examples/influx_implementation/components/should_not_update.over_react.g.dart index fe9e54f60..421819ef3 100644 --- a/web/flux_to_redux/advanced/examples/influx_implementation/components/should_not_update.over_react.g.dart +++ b/web/flux_to_redux/advanced/examples/influx_implementation/components/should_not_update.over_react.g.dart @@ -34,7 +34,7 @@ _$$ShouldNotUpdateProps _$ShouldNotUpdate([Map backingProps]) => abstract class _$$ShouldNotUpdateProps extends UiProps with ShouldNotUpdateProps, - $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. { _$$ShouldNotUpdateProps._(); @@ -141,7 +141,7 @@ class _$ShouldNotUpdateComponent extends ShouldNotUpdateComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. ShouldNotUpdateProps: $ShouldNotUpdateProps.meta, }); } diff --git a/web/flux_to_redux/advanced/examples/redux_implementation/components/random_color_redux.over_react.g.dart b/web/flux_to_redux/advanced/examples/redux_implementation/components/random_color_redux.over_react.g.dart index c991ebea1..e112b8e44 100644 --- a/web/flux_to_redux/advanced/examples/redux_implementation/components/random_color_redux.over_react.g.dart +++ b/web/flux_to_redux/advanced/examples/redux_implementation/components/random_color_redux.over_react.g.dart @@ -34,9 +34,9 @@ _$$RandomColorReduxProps _$RandomColorRedux([Map backingProps]) => abstract class _$$RandomColorReduxProps extends UiProps with RandomColorReduxPropsMixin, - $RandomColorReduxPropsMixin, // If this generated mixin is undefined, it's likely because RandomColorReduxPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of RandomColorReduxPropsMixin. + $RandomColorReduxPropsMixin, // If this generated mixin is undefined, it's likely because RandomColorReduxPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of RandomColorReduxPropsMixin, and check that $RandomColorReduxPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements RandomColorReduxProps { _$$RandomColorReduxProps._(); @@ -144,9 +144,9 @@ class _$RandomColorReduxComponent extends RandomColorReduxComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because RandomColorReduxPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of RandomColorReduxPropsMixin. + // If this generated mixin is undefined, it's likely because RandomColorReduxPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of RandomColorReduxPropsMixin, and check that $RandomColorReduxPropsMixin is exported/imported properly. RandomColorReduxPropsMixin: $RandomColorReduxPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/flux_to_redux/advanced/examples/redux_implementation/components/should_not_update.over_react.g.dart b/web/flux_to_redux/advanced/examples/redux_implementation/components/should_not_update.over_react.g.dart index fe9e54f60..421819ef3 100644 --- a/web/flux_to_redux/advanced/examples/redux_implementation/components/should_not_update.over_react.g.dart +++ b/web/flux_to_redux/advanced/examples/redux_implementation/components/should_not_update.over_react.g.dart @@ -34,7 +34,7 @@ _$$ShouldNotUpdateProps _$ShouldNotUpdate([Map backingProps]) => abstract class _$$ShouldNotUpdateProps extends UiProps with ShouldNotUpdateProps, - $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. { _$$ShouldNotUpdateProps._(); @@ -141,7 +141,7 @@ class _$ShouldNotUpdateComponent extends ShouldNotUpdateComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. ShouldNotUpdateProps: $ShouldNotUpdateProps.meta, }); } diff --git a/web/flux_to_redux/simple/examples/flux_implementation/components/big_block.over_react.g.dart b/web/flux_to_redux/simple/examples/flux_implementation/components/big_block.over_react.g.dart index dcba7bfac..4dd6253ea 100644 --- a/web/flux_to_redux/simple/examples/flux_implementation/components/big_block.over_react.g.dart +++ b/web/flux_to_redux/simple/examples/flux_implementation/components/big_block.over_react.g.dart @@ -34,7 +34,7 @@ abstract class _$$BigBlockProps extends UiProps with FluxUiPropsMixin, $FluxUiPropsMixin // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + RandomColorStore> // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. implements BigBlockProps { _$$BigBlockProps._(); @@ -142,7 +142,7 @@ class _$BigBlockComponent extends BigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. FluxUiPropsMixin: $FluxUiPropsMixin.meta, }); } diff --git a/web/flux_to_redux/simple/examples/influx_implementation/components/big_block.over_react.g.dart b/web/flux_to_redux/simple/examples/influx_implementation/components/big_block.over_react.g.dart index 545531316..13eb3f98d 100644 --- a/web/flux_to_redux/simple/examples/influx_implementation/components/big_block.over_react.g.dart +++ b/web/flux_to_redux/simple/examples/influx_implementation/components/big_block.over_react.g.dart @@ -34,7 +34,7 @@ abstract class _$$BigBlockProps extends UiProps with FluxUiPropsMixin, $FluxUiPropsMixin // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + FluxStore> // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. implements BigBlockProps { _$$BigBlockProps._(); @@ -142,7 +142,7 @@ class _$BigBlockComponent extends BigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FluxUiPropsMixin. + // If this generated mixin is undefined, it's likely because FluxUiPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FluxUiPropsMixin, and check that $FluxUiPropsMixin is exported/imported properly. FluxUiPropsMixin: $FluxUiPropsMixin.meta, }); } diff --git a/web/flux_to_redux/simple/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart b/web/flux_to_redux/simple/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart index 473e980a2..b6321e754 100644 --- a/web/flux_to_redux/simple/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart +++ b/web/flux_to_redux/simple/examples/influx_implementation/components/connect_flux_big_block.over_react.g.dart @@ -34,9 +34,9 @@ _$$ConnectFluxBigBlockProps _$ConnectFluxBigBlock([Map backingProps]) => abstract class _$$ConnectFluxBigBlockProps extends UiProps with ConnectFluxBigBlockPropsMixin, - $ConnectFluxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectFluxBigBlockPropsMixin. + $ConnectFluxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectFluxBigBlockPropsMixin, and check that $ConnectFluxBigBlockPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements ConnectFluxBigBlockProps { _$$ConnectFluxBigBlockProps._(); @@ -145,9 +145,9 @@ class _$ConnectFluxBigBlockComponent extends ConnectFluxBigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectFluxBigBlockPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectFluxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectFluxBigBlockPropsMixin, and check that $ConnectFluxBigBlockPropsMixin is exported/imported properly. ConnectFluxBigBlockPropsMixin: $ConnectFluxBigBlockPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/flux_to_redux/simple/examples/influx_implementation/components/redux_big_block.over_react.g.dart b/web/flux_to_redux/simple/examples/influx_implementation/components/redux_big_block.over_react.g.dart index e62b810ae..50b105a53 100644 --- a/web/flux_to_redux/simple/examples/influx_implementation/components/redux_big_block.over_react.g.dart +++ b/web/flux_to_redux/simple/examples/influx_implementation/components/redux_big_block.over_react.g.dart @@ -34,9 +34,9 @@ _$$ReduxBigBlockProps _$ReduxBigBlock([Map backingProps]) => abstract class _$$ReduxBigBlockProps extends UiProps with ReduxBigBlockPropsMixin, - $ReduxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ReduxBigBlockPropsMixin. + $ReduxBigBlockPropsMixin, // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ReduxBigBlockPropsMixin, and check that $ReduxBigBlockPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements ReduxBigBlockProps { _$$ReduxBigBlockProps._(); @@ -144,9 +144,9 @@ class _$ReduxBigBlockComponent extends ReduxBigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ReduxBigBlockPropsMixin. + // If this generated mixin is undefined, it's likely because ReduxBigBlockPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ReduxBigBlockPropsMixin, and check that $ReduxBigBlockPropsMixin is exported/imported properly. ReduxBigBlockPropsMixin: $ReduxBigBlockPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/flux_to_redux/simple/examples/influx_implementation/components/should_not_update.over_react.g.dart b/web/flux_to_redux/simple/examples/influx_implementation/components/should_not_update.over_react.g.dart index ce7400eb6..e01043493 100644 --- a/web/flux_to_redux/simple/examples/influx_implementation/components/should_not_update.over_react.g.dart +++ b/web/flux_to_redux/simple/examples/influx_implementation/components/should_not_update.over_react.g.dart @@ -34,7 +34,7 @@ _$$ShouldNotUpdateProps _$ShouldNotUpdate([Map backingProps]) => abstract class _$$ShouldNotUpdateProps extends UiProps with ShouldNotUpdateProps, - $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. { _$$ShouldNotUpdateProps._(); @@ -141,7 +141,7 @@ class _$ShouldNotUpdateComponent extends ShouldNotUpdateComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. ShouldNotUpdateProps: $ShouldNotUpdateProps.meta, }); } diff --git a/web/flux_to_redux/simple/examples/redux_implementation/components/big_block.over_react.g.dart b/web/flux_to_redux/simple/examples/redux_implementation/components/big_block.over_react.g.dart index b2fb94137..7df520ceb 100644 --- a/web/flux_to_redux/simple/examples/redux_implementation/components/big_block.over_react.g.dart +++ b/web/flux_to_redux/simple/examples/redux_implementation/components/big_block.over_react.g.dart @@ -33,7 +33,7 @@ _$$BigBlockProps _$BigBlock([Map backingProps]) => backingProps == null abstract class _$$BigBlockProps extends UiProps with BigBlockProps, - $BigBlockProps // If this generated mixin is undefined, it's likely because BigBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BigBlockProps. + $BigBlockProps // If this generated mixin is undefined, it's likely because BigBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BigBlockProps, and check that $BigBlockProps is exported/imported properly. { _$$BigBlockProps._(); @@ -140,7 +140,7 @@ class _$BigBlockComponent extends BigBlockComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because BigBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BigBlockProps. + // If this generated mixin is undefined, it's likely because BigBlockProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BigBlockProps, and check that $BigBlockProps is exported/imported properly. BigBlockProps: $BigBlockProps.meta, }); } diff --git a/web/flux_to_redux/simple/examples/redux_implementation/components/should_not_update.over_react.g.dart b/web/flux_to_redux/simple/examples/redux_implementation/components/should_not_update.over_react.g.dart index fe9e54f60..421819ef3 100644 --- a/web/flux_to_redux/simple/examples/redux_implementation/components/should_not_update.over_react.g.dart +++ b/web/flux_to_redux/simple/examples/redux_implementation/components/should_not_update.over_react.g.dart @@ -34,7 +34,7 @@ _$$ShouldNotUpdateProps _$ShouldNotUpdate([Map backingProps]) => abstract class _$$ShouldNotUpdateProps extends UiProps with ShouldNotUpdateProps, - $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + $ShouldNotUpdateProps // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. { _$$ShouldNotUpdateProps._(); @@ -141,7 +141,7 @@ class _$ShouldNotUpdateComponent extends ShouldNotUpdateComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ShouldNotUpdateProps. + // If this generated mixin is undefined, it's likely because ShouldNotUpdateProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ShouldNotUpdateProps, and check that $ShouldNotUpdateProps is exported/imported properly. ShouldNotUpdateProps: $ShouldNotUpdateProps.meta, }); } diff --git a/web/over_react_redux/examples/dev_tools/components/counter.over_react.g.dart b/web/over_react_redux/examples/dev_tools/components/counter.over_react.g.dart index 42ebc4cf8..818f9cbba 100644 --- a/web/over_react_redux/examples/dev_tools/components/counter.over_react.g.dart +++ b/web/over_react_redux/examples/dev_tools/components/counter.over_react.g.dart @@ -33,9 +33,9 @@ _$$CounterProps _$_Counter([Map backingProps]) => backingProps == null abstract class _$$CounterProps extends UiProps with CounterPropsMixin, - $CounterPropsMixin, // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of CounterPropsMixin. + $CounterPropsMixin, // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of CounterPropsMixin, and check that $CounterPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements CounterProps { _$$CounterProps._(); @@ -143,9 +143,9 @@ class _$CounterComponent extends CounterComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of CounterPropsMixin. + // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of CounterPropsMixin, and check that $CounterPropsMixin is exported/imported properly. CounterPropsMixin: $CounterPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/over_react_redux/examples/multiple_stores/components/counter.over_react.g.dart b/web/over_react_redux/examples/multiple_stores/components/counter.over_react.g.dart index 42ebc4cf8..818f9cbba 100644 --- a/web/over_react_redux/examples/multiple_stores/components/counter.over_react.g.dart +++ b/web/over_react_redux/examples/multiple_stores/components/counter.over_react.g.dart @@ -33,9 +33,9 @@ _$$CounterProps _$_Counter([Map backingProps]) => backingProps == null abstract class _$$CounterProps extends UiProps with CounterPropsMixin, - $CounterPropsMixin, // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of CounterPropsMixin. + $CounterPropsMixin, // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of CounterPropsMixin, and check that $CounterPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements CounterProps { _$$CounterProps._(); @@ -143,9 +143,9 @@ class _$CounterComponent extends CounterComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of CounterPropsMixin. + // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of CounterPropsMixin, and check that $CounterPropsMixin is exported/imported properly. CounterPropsMixin: $CounterPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/over_react_redux/examples/simple/components/counter.over_react.g.dart b/web/over_react_redux/examples/simple/components/counter.over_react.g.dart index 42ebc4cf8..818f9cbba 100644 --- a/web/over_react_redux/examples/simple/components/counter.over_react.g.dart +++ b/web/over_react_redux/examples/simple/components/counter.over_react.g.dart @@ -33,9 +33,9 @@ _$$CounterProps _$_Counter([Map backingProps]) => backingProps == null abstract class _$$CounterProps extends UiProps with CounterPropsMixin, - $CounterPropsMixin, // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of CounterPropsMixin. + $CounterPropsMixin, // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of CounterPropsMixin, and check that $CounterPropsMixin is exported/imported properly. ConnectPropsMixin, - $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + $ConnectPropsMixin // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. implements CounterProps { _$$CounterProps._(); @@ -143,9 +143,9 @@ class _$CounterComponent extends CounterComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of CounterPropsMixin. + // If this generated mixin is undefined, it's likely because CounterPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of CounterPropsMixin, and check that $CounterPropsMixin is exported/imported properly. CounterPropsMixin: $CounterPropsMixin.meta, - // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ConnectPropsMixin. + // If this generated mixin is undefined, it's likely because ConnectPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ConnectPropsMixin, and check that $ConnectPropsMixin is exported/imported properly. ConnectPropsMixin: $ConnectPropsMixin.meta, }); } diff --git a/web/src/demos/faulty-component.over_react.g.dart b/web/src/demos/faulty-component.over_react.g.dart index 10f0c19b2..1e0821bc5 100644 --- a/web/src/demos/faulty-component.over_react.g.dart +++ b/web/src/demos/faulty-component.over_react.g.dart @@ -33,7 +33,7 @@ _$$FaultyProps _$Faulty([Map backingProps]) => backingProps == null abstract class _$$FaultyProps extends UiProps with FaultyProps, - $FaultyProps // If this generated mixin is undefined, it's likely because FaultyProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FaultyProps. + $FaultyProps // If this generated mixin is undefined, it's likely because FaultyProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FaultyProps, and check that $FaultyProps is exported/imported properly. { _$$FaultyProps._(); @@ -104,7 +104,7 @@ class _$$FaultyProps$JsMap extends _$$FaultyProps { abstract class _$$FaultyState extends UiState with FaultyState, - $FaultyState // If this generated mixin is undefined, it's likely because FaultyState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of FaultyState. + $FaultyState // If this generated mixin is undefined, it's likely because FaultyState is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of FaultyState, and check that $FaultyState is exported/imported properly. { _$$FaultyState._(); @@ -224,7 +224,7 @@ class _$FaultyComponent extends FaultyComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FaultyProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FaultyProps. + // If this generated mixin is undefined, it's likely because FaultyProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FaultyProps, and check that $FaultyProps is exported/imported properly. FaultyProps: $FaultyProps.meta, }); } diff --git a/web/src/demos/faulty-on-mount-component.over_react.g.dart b/web/src/demos/faulty-on-mount-component.over_react.g.dart index f64283bdc..288e316f0 100644 --- a/web/src/demos/faulty-on-mount-component.over_react.g.dart +++ b/web/src/demos/faulty-on-mount-component.over_react.g.dart @@ -34,7 +34,7 @@ _$$FaultyOnMountProps _$FaultyOnMount([Map backingProps]) => abstract class _$$FaultyOnMountProps extends UiProps with FaultyOnMountProps, - $FaultyOnMountProps // If this generated mixin is undefined, it's likely because FaultyOnMountProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FaultyOnMountProps. + $FaultyOnMountProps // If this generated mixin is undefined, it's likely because FaultyOnMountProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FaultyOnMountProps, and check that $FaultyOnMountProps is exported/imported properly. { _$$FaultyOnMountProps._(); @@ -141,7 +141,7 @@ class _$FaultyOnMountComponent extends FaultyOnMountComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because FaultyOnMountProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of FaultyOnMountProps. + // If this generated mixin is undefined, it's likely because FaultyOnMountProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of FaultyOnMountProps, and check that $FaultyOnMountProps is exported/imported properly. FaultyOnMountProps: $FaultyOnMountProps.meta, }); } From 9913d5b549d7885139663beb00d90d9528603544 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Fri, 18 Sep 2020 11:35:20 -0700 Subject: [PATCH 08/10] Update generated gold files --- .../basic.over_react.g.dart.goldFile | 4 +-- .../basic_library.over_react.g.dart.goldFile | 20 +++++++------- ...type_parameters.over_react.g.dart.goldFile | 26 +++++++++---------- 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/test_fixtures/gold_output_files/mixin_based/basic.over_react.g.dart.goldFile b/test_fixtures/gold_output_files/mixin_based/basic.over_react.g.dart.goldFile index 5341adb87..16df4c8c9 100644 --- a/test_fixtures/gold_output_files/mixin_based/basic.over_react.g.dart.goldFile +++ b/test_fixtures/gold_output_files/mixin_based/basic.over_react.g.dart.goldFile @@ -33,7 +33,7 @@ _$$BasicProps _$Basic([Map backingProps]) => backingProps == null abstract class _$$BasicProps extends UiProps with BasicProps, - $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + $BasicProps // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. { _$$BasicProps._(); @@ -139,7 +139,7 @@ class _$BasicComponent extends BasicComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicProps. + // If this generated mixin is undefined, it's likely because BasicProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicProps, and check that $BasicProps is exported/imported properly. BasicProps: $BasicProps.meta, }); } diff --git a/test_fixtures/gold_output_files/mixin_based/basic_library.over_react.g.dart.goldFile b/test_fixtures/gold_output_files/mixin_based/basic_library.over_react.g.dart.goldFile index 314a1af7f..84797a2f0 100644 --- a/test_fixtures/gold_output_files/mixin_based/basic_library.over_react.g.dart.goldFile +++ b/test_fixtures/gold_output_files/mixin_based/basic_library.over_react.g.dart.goldFile @@ -34,9 +34,9 @@ _$$BasicPartOfLibProps _$BasicPartOfLib([Map backingProps]) => abstract class _$$BasicPartOfLibProps extends UiProps with ExamplePropsMixin, - $ExamplePropsMixin, // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ExamplePropsMixin. + $ExamplePropsMixin, // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ExamplePropsMixin, and check that $ExamplePropsMixin is exported/imported properly. BasicPartOfLibPropsMixin, - $BasicPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPartOfLibPropsMixin. + $BasicPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPartOfLibPropsMixin, and check that $BasicPartOfLibPropsMixin is exported/imported properly. implements BasicPartOfLibProps { _$$BasicPartOfLibProps._(); @@ -108,9 +108,9 @@ class _$$BasicPartOfLibProps$JsMap extends _$$BasicPartOfLibProps { abstract class _$$BasicPartOfLibState extends UiState with ExampleStateMixin, - $ExampleStateMixin, // If this generated mixin is undefined, it's likely because ExampleStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of ExampleStateMixin. + $ExampleStateMixin, // If this generated mixin is undefined, it's likely because ExampleStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of ExampleStateMixin, and check that $ExampleStateMixin is exported/imported properly. BasicPartOfLibStateMixin, - $BasicPartOfLibStateMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPartOfLibStateMixin. + $BasicPartOfLibStateMixin // If this generated mixin is undefined, it's likely because BasicPartOfLibStateMixin is not a valid `mixin`-based state mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPartOfLibStateMixin, and check that $BasicPartOfLibStateMixin is exported/imported properly. implements BasicPartOfLibState { _$$BasicPartOfLibState._(); @@ -231,9 +231,9 @@ class _$BasicPartOfLibComponent extends BasicPartOfLibComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of ExamplePropsMixin. + // If this generated mixin is undefined, it's likely because ExamplePropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of ExamplePropsMixin, and check that $ExamplePropsMixin is exported/imported properly. ExamplePropsMixin: $ExamplePropsMixin.meta, - // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of BasicPartOfLibPropsMixin. + // If this generated mixin is undefined, it's likely because BasicPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of BasicPartOfLibPropsMixin, and check that $BasicPartOfLibPropsMixin is exported/imported properly. BasicPartOfLibPropsMixin: $BasicPartOfLibPropsMixin.meta, }); } @@ -397,9 +397,9 @@ _$$SubPartOfLibProps _$SubPartOfLib([Map backingProps]) => backingProps == null abstract class _$$SubPartOfLibProps extends UiProps with SuperPartOfLibPropsMixin, - $SuperPartOfLibPropsMixin, // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SuperPartOfLibPropsMixin. + $SuperPartOfLibPropsMixin, // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SuperPartOfLibPropsMixin, and check that $SuperPartOfLibPropsMixin is exported/imported properly. SubPartOfLibPropsMixin, - $SubPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SubPartOfLibPropsMixin. + $SubPartOfLibPropsMixin // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SubPartOfLibPropsMixin, and check that $SubPartOfLibPropsMixin is exported/imported properly. implements SubPartOfLibProps { _$$SubPartOfLibProps._(); @@ -507,9 +507,9 @@ class _$SubPartOfLibComponent extends SubPartOfLibComponent { @override PropsMetaCollection get propsMeta => const PropsMetaCollection({ - // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SuperPartOfLibPropsMixin. + // If this generated mixin is undefined, it's likely because SuperPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SuperPartOfLibPropsMixin, and check that $SuperPartOfLibPropsMixin is exported/imported properly. SuperPartOfLibPropsMixin: $SuperPartOfLibPropsMixin.meta, - // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SubPartOfLibPropsMixin. + // If this generated mixin is undefined, it's likely because SubPartOfLibPropsMixin is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SubPartOfLibPropsMixin, and check that $SubPartOfLibPropsMixin is exported/imported properly. SubPartOfLibPropsMixin: $SubPartOfLibPropsMixin.meta, }); } diff --git a/test_fixtures/gold_output_files/mixin_based/type_parameters.over_react.g.dart.goldFile b/test_fixtures/gold_output_files/mixin_based/type_parameters.over_react.g.dart.goldFile index 2ed409eb5..26f9eb1b1 100644 --- a/test_fixtures/gold_output_files/mixin_based/type_parameters.over_react.g.dart.goldFile +++ b/test_fixtures/gold_output_files/mixin_based/type_parameters.over_react.g.dart.goldFile @@ -182,7 +182,7 @@ abstract class _$$SingleProps extends UiProps with SingleProps, $SingleProps< - T> // If this generated mixin is undefined, it's likely because SingleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleProps. + T> // If this generated mixin is undefined, it's likely because SingleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleProps, and check that $SingleProps is exported/imported properly. { _$$SingleProps._(); @@ -254,7 +254,7 @@ abstract class _$$SingleWithBoundProps extends UiProps with SingleWithBoundProps, $SingleWithBoundProps< - S> // If this generated mixin is undefined, it's likely because SingleWithBoundProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleWithBoundProps. + S> // If this generated mixin is undefined, it's likely because SingleWithBoundProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleWithBoundProps, and check that $SingleWithBoundProps is exported/imported properly. { _$$SingleWithBoundProps._(); @@ -327,7 +327,7 @@ abstract class _$$DoubleProps extends UiProps with DoubleProps, $DoubleProps // If this generated mixin is undefined, it's likely because DoubleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of DoubleProps. + B> // If this generated mixin is undefined, it's likely because DoubleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of DoubleProps, and check that $DoubleProps is exported/imported properly. { _$$DoubleProps._(); @@ -397,18 +397,18 @@ _$$ConcreteNoneProps _$ConcreteNone([Map backingProps]) => backingProps == null abstract class _$$ConcreteNoneProps extends UiProps with NoneProps, - $NoneProps, // If this generated mixin is undefined, it's likely because NoneProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of NoneProps. + $NoneProps, // If this generated mixin is undefined, it's likely because NoneProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of NoneProps, and check that $NoneProps is exported/imported properly. SingleProps, $SingleProps< - String>, // If this generated mixin is undefined, it's likely because SingleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleProps. + String>, // If this generated mixin is undefined, it's likely because SingleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleProps, and check that $SingleProps is exported/imported properly. SingleThatWontBeSpecifiedProps, - $SingleThatWontBeSpecifiedProps, // If this generated mixin is undefined, it's likely because SingleThatWontBeSpecifiedProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleThatWontBeSpecifiedProps. + $SingleThatWontBeSpecifiedProps, // If this generated mixin is undefined, it's likely because SingleThatWontBeSpecifiedProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleThatWontBeSpecifiedProps, and check that $SingleThatWontBeSpecifiedProps is exported/imported properly. SingleWithBoundProps, $SingleWithBoundProps< - RegExp>, // If this generated mixin is undefined, it's likely because SingleWithBoundProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleWithBoundProps. + RegExp>, // If this generated mixin is undefined, it's likely because SingleWithBoundProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleWithBoundProps, and check that $SingleWithBoundProps is exported/imported properly. DoubleProps, $DoubleProps // If this generated mixin is undefined, it's likely because DoubleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of DoubleProps. + int> // If this generated mixin is undefined, it's likely because DoubleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of DoubleProps, and check that $DoubleProps is exported/imported properly. implements ConcreteNoneProps { _$$ConcreteNoneProps._(); @@ -479,18 +479,18 @@ _$$ConcreteArgsProps _$ConcreteArgs([Map backingProps]) => backingProps == null abstract class _$$ConcreteArgsProps extends UiProps with NoneProps, - $NoneProps, // If this generated mixin is undefined, it's likely because NoneProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of NoneProps. + $NoneProps, // If this generated mixin is undefined, it's likely because NoneProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of NoneProps, and check that $NoneProps is exported/imported properly. SingleProps, $SingleProps< - String>, // If this generated mixin is undefined, it's likely because SingleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleProps. + String>, // If this generated mixin is undefined, it's likely because SingleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleProps, and check that $SingleProps is exported/imported properly. SingleThatWontBeSpecifiedProps, - $SingleThatWontBeSpecifiedProps, // If this generated mixin is undefined, it's likely because SingleThatWontBeSpecifiedProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleThatWontBeSpecifiedProps. + $SingleThatWontBeSpecifiedProps, // If this generated mixin is undefined, it's likely because SingleThatWontBeSpecifiedProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleThatWontBeSpecifiedProps, and check that $SingleThatWontBeSpecifiedProps is exported/imported properly. SingleWithBoundProps, $SingleWithBoundProps< - RegExp>, // If this generated mixin is undefined, it's likely because SingleWithBoundProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of SingleWithBoundProps. + RegExp>, // If this generated mixin is undefined, it's likely because SingleWithBoundProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of SingleWithBoundProps, and check that $SingleWithBoundProps is exported/imported properly. DoubleProps, $DoubleProps // If this generated mixin is undefined, it's likely because DoubleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not exported. Check the declaration of DoubleProps. + V> // If this generated mixin is undefined, it's likely because DoubleProps is not a valid `mixin`-based props mixin, or because it is but the generated mixin was not imported. Check the declaration of DoubleProps, and check that $DoubleProps is exported/imported properly. implements ConcreteArgsProps { _$$ConcreteArgsProps._(); From e323c040fa7ea8c31a646d89016334081c9c5d37 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Fri, 18 Sep 2020 12:34:04 -0700 Subject: [PATCH 09/10] Fix tests, tweak whitespace in output --- lib/src/builder/parsing/members/factory.dart | 4 +-- .../builder/declaration_parsing_test.dart | 26 +++++++++---------- .../builder/parsing/members_test.dart | 5 +++- 3 files changed, 19 insertions(+), 16 deletions(-) diff --git a/lib/src/builder/parsing/members/factory.dart b/lib/src/builder/parsing/members/factory.dart index c9bdeb8b4..94f3e69a2 100644 --- a/lib/src/builder/parsing/members/factory.dart +++ b/lib/src/builder/parsing/members/factory.dart @@ -97,10 +97,10 @@ class BoilerplateFactory extends BoilerplateMember { if (!referencesGeneratedFactory && !shouldGenerateConfig) { errorCollector.addError( 'Factory variables are stubs for generated code, and must' - ' be initialized with an expression containing either ' + ' be initialized with an expression containing either' ' the generated factory ($generatedFactoryName) or' ' the generated factory config ($generatedConfigName).' - '\nExamples:' + '\n\nExamples:' '\n\n $factoryName = $generatedFactoryName;' '\n\n $factoryName = connect(...)($generatedFactoryName);' '\n\n $factoryName = uiFunction((props) { ... }, $generatedConfigName);', diff --git a/test/vm_tests/builder/declaration_parsing_test.dart b/test/vm_tests/builder/declaration_parsing_test.dart index 35b199f0d..fe02a316d 100644 --- a/test/vm_tests/builder/declaration_parsing_test.dart +++ b/test/vm_tests/builder/declaration_parsing_test.dart @@ -1996,11 +1996,12 @@ main() { $restOfComponent '''); - verify(logger.severe(contains( - 'Factory variables are stubs for the generated factories, and must ' - 'be initialized with or otherwise reference the generated factory. ' - 'Should be: `Foo = _\$Foo`'))); + verify(logger.severe(contains('Factory variables are stubs for generated code, and must' + ' be initialized with an expression containing either' + ' the generated factory (_\$Foo) or' + ' the generated factory config (\$FooConfig).'))); }); + test('declared using multiple variables', () { setUpAndParse(''' @Factory() @@ -2020,11 +2021,10 @@ main() { $restOfComponent '''); - verify(logger.severe(contains( - 'Factory variables are stubs for the generated factories, and must ' - 'be initialized with or otherwise reference the generated factory. ' - 'Should be: `Foo = _\$Foo`'))); - + verify(logger.severe(contains('Factory variables are stubs for generated code, and must' + ' be initialized with an expression containing either' + ' the generated factory (_\$Foo) or' + ' the generated factory config (\$FooConfig).'))); }); test('private and declared with an invalid initializer', () { @@ -2035,10 +2035,10 @@ main() { $restOfComponent '''); - verify(logger.severe(contains( - 'Factory variables are stubs for the generated factories, and must ' - 'be initialized with or otherwise reference the generated factory. ' - 'Should be: `_Foo = _\$_Foo`'))); + verify(logger.severe(contains('Factory variables are stubs for generated code, and must' + ' be initialized with an expression containing either' + ' the generated factory (_\$_Foo) or' + ' the generated factory config (\$_FooConfig).'))); }); }); diff --git a/test/vm_tests/builder/parsing/members_test.dart b/test/vm_tests/builder/parsing/members_test.dart index 2922b58e2..a1bcab8c6 100644 --- a/test/vm_tests/builder/parsing/members_test.dart +++ b/test/vm_tests/builder/parsing/members_test.dart @@ -424,7 +424,10 @@ main() { factory.validate(resolveVersion(members).version, collector); expect(validateResults, [ - contains('Should be: `${factory.name.name} = _\$${factory.name.name}`'), + contains('Factory variables are stubs for generated code, and must' + ' be initialized with an expression containing either' + ' the generated factory (_\$Foo) or' + ' the generated factory config (\$FooConfig).'), ]); }); }); From 7da38456454ef9272f62abe778f0180a2d818516 Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Fri, 18 Sep 2020 13:58:05 -0700 Subject: [PATCH 10/10] Format --- lib/src/builder/parsing/members/props_and_state.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/builder/parsing/members/props_and_state.dart b/lib/src/builder/parsing/members/props_and_state.dart index ad54c4deb..68572d8b2 100644 --- a/lib/src/builder/parsing/members/props_and_state.dart +++ b/lib/src/builder/parsing/members/props_and_state.dart @@ -100,7 +100,8 @@ abstract class BoilerplatePropsOrState extends BoilerplateTypedMapMember if (companion == null) { // Don't emit this and the prefix error. if (node.name.name.startsWith(privateSourcePrefix)) { - errorCollector.addError('Should have companion class', errorCollector.spanFor(node.name)); + errorCollector.addError( + 'Should have companion class', errorCollector.spanFor(node.name)); } } else { validateMetaField(companion, propsOrStateMetaStructName, errorCollector);