Skip to content

Commit

Permalink
Update gold files
Browse files Browse the repository at this point in the history
  • Loading branch information
greglittlefield-wf committed Dec 5, 2023
1 parent 523147b commit 992c32e
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,16 @@ class _$$BasicProps extends _$BasicProps
/// The default namespace for the prop getters/setters generated for this class.
@override
String get propKeyNamespace => 'BasicProps.';

@override
String $getPropKey(void Function(Map m) accessMap) =>
_$getPropKey$_$$BasicProps(accessMap, (map) => _$$BasicProps(map));
}

/// An alias for [getPropKey] so it can be referenced within the props class impl
/// without being shadowed by the `getPropKey` instance extension member.
const _$getPropKey$_$$BasicProps = getPropKey;

// Concrete component implementation mixin.
//
// Implements typed props/state factories, defaults `consumedPropKeys` to the keys
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,17 @@ class _$$BasicPartOfLibProps extends _$BasicPartOfLibProps
/// The default namespace for the prop getters/setters generated for this class.
@override
String get propKeyNamespace => 'BasicPartOfLibProps.';

@override
String $getPropKey(void Function(Map m) accessMap) =>
_$getPropKey$_$$BasicPartOfLibProps(
accessMap, (map) => _$$BasicPartOfLibProps(map));
}

/// An alias for [getPropKey] so it can be referenced within the props class impl
/// without being shadowed by the `getPropKey` instance extension member.
const _$getPropKey$_$$BasicPartOfLibProps = getPropKey;

abstract class _$BasicPartOfLibStateAccessorsMixin
implements _$BasicPartOfLibState {
@override
Expand Down Expand Up @@ -342,8 +351,17 @@ class _$$SubPartOfLibProps extends _$SubPartOfLibProps
/// The default namespace for the prop getters/setters generated for this class.
@override
String get propKeyNamespace => 'SubPartOfLibProps.';

@override
String $getPropKey(void Function(Map m) accessMap) =>
_$getPropKey$_$$SubPartOfLibProps(
accessMap, (map) => _$$SubPartOfLibProps(map));
}

/// An alias for [getPropKey] so it can be referenced within the props class impl
/// without being shadowed by the `getPropKey` instance extension member.
const _$getPropKey$_$$SubPartOfLibProps = getPropKey;

// Concrete component implementation mixin.
//
// Implements typed props/state factories, defaults `consumedPropKeys` to the keys
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,16 @@ abstract class _$$BasicProps extends _$BasicProps
/// The default namespace for the prop getters/setters generated for this class.
@override
String get propKeyNamespace => 'BasicProps.';

@override
String $getPropKey(void Function(Map m) accessMap) =>
_$getPropKey$_$$BasicProps(accessMap, (map) => _$$BasicProps(map));
}

/// An alias for [getPropKey] so it can be referenced within the props class impl
/// without being shadowed by the `getPropKey` instance extension member.
const _$getPropKey$_$$BasicProps = getPropKey;

// Concrete props implementation that can be backed by any [Map].
class _$$BasicProps$PlainMap extends _$$BasicProps {
// This initializer of `_props` to an empty map, as well as the reassignment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,17 @@ abstract class _$$BasicPartOfLibProps extends _$BasicPartOfLibProps
/// The default namespace for the prop getters/setters generated for this class.
@override
String get propKeyNamespace => 'BasicPartOfLibProps.';

@override
String $getPropKey(void Function(Map m) accessMap) =>
_$getPropKey$_$$BasicPartOfLibProps(
accessMap, (map) => _$$BasicPartOfLibProps(map));
}

/// An alias for [getPropKey] so it can be referenced within the props class impl
/// without being shadowed by the `getPropKey` instance extension member.
const _$getPropKey$_$$BasicPartOfLibProps = getPropKey;

// Concrete props implementation that can be backed by any [Map].
class _$$BasicPartOfLibProps$PlainMap extends _$$BasicPartOfLibProps {
// This initializer of `_props` to an empty map, as well as the reassignment
Expand Down Expand Up @@ -449,8 +458,17 @@ abstract class _$$SubPartOfLibProps extends _$SubPartOfLibProps
/// The default namespace for the prop getters/setters generated for this class.
@override
String get propKeyNamespace => 'SubPartOfLibProps.';

@override
String $getPropKey(void Function(Map m) accessMap) =>
_$getPropKey$_$$SubPartOfLibProps(
accessMap, (map) => _$$SubPartOfLibProps(map));
}

/// An alias for [getPropKey] so it can be referenced within the props class impl
/// without being shadowed by the `getPropKey` instance extension member.
const _$getPropKey$_$$SubPartOfLibProps = getPropKey;

// Concrete props implementation that can be backed by any [Map].
class _$$SubPartOfLibProps$PlainMap extends _$$SubPartOfLibProps {
// This initializer of `_props` to an empty map, as well as the reassignment
Expand Down

0 comments on commit 992c32e

Please sign in to comment.