-
Notifications
You must be signed in to change notification settings - Fork 194
Draft of typed getExtension #357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -236,7 +236,7 @@ class _FieldSet { | |
return value; | ||
} | ||
|
||
List<T> _getDefaultList<T>(FieldInfo<T> fi) { | ||
List<T> _getDefaultList<T, U>(FieldInfo<T, U> fi) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is the new parameter plumbed through anywhere from here? |
||
assert(fi.isRepeated); | ||
if (_isReadOnly) return List.unmodifiable(const []); | ||
|
||
|
@@ -359,11 +359,11 @@ class _FieldSet { | |
/// Creates and stores the repeated field if it doesn't exist. | ||
/// If it's an extension and the list doesn't exist, validates and stores it. | ||
/// Suitable for decoders. | ||
List<T> _ensureRepeatedField<T>(FieldInfo<T> fi) { | ||
List<T> _ensureRepeatedField<T, U>(FieldInfo<T, U> fi) { | ||
assert(!_isReadOnly); | ||
assert(fi.isRepeated); | ||
if (fi.index == null) { | ||
return _ensureExtensions()._ensureRepeatedField(fi); | ||
return _ensureExtensions()._ensureRepeatedField(fi as Extension<T, U>); | ||
} | ||
var value = _getFieldOrNull(fi); | ||
if (value != null) return value as List<T>; | ||
|
@@ -439,7 +439,7 @@ class _FieldSet { | |
List<T> _$getList<T>(int index) { | ||
var value = _values[index]; | ||
if (value != null) return value as List<T>; | ||
return _getDefaultList<T>(_nonExtensionInfoByIndex(index)); | ||
return _getDefaultList<T, dynamic>(_nonExtensionInfoByIndex(index)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why would this be |
||
} | ||
|
||
/// The implementation of a generated getter for map fields. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see some type parameters S and U throughout the PR. Are they meant to be separate types? The comment above mentions S, but the parameter is U here. I am guessing either is meant to represent the List as mentioned
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry - I did a rename, but forgot to rename the comment.