-
Notifications
You must be signed in to change notification settings - Fork 120
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
Uint8List inherits from TypedData but docs don't show it #1623
Comments
Uint8List implements an abstract private class, This is a behavioral inconsistency to dartdoc's answer to this question: If a public class implements/extends a private class, should that private class's public superclasses/mixins/interfaces be documented as if the original class extended/mixed in/implemented them? Dartdoc's current answer to this is no -- a private class hides any types that it inherits from and therefore we don't advertise the type on the page. From that logic, it's a bug in canonicalization that we don't consider buffer to be owned by this class; we should be pretending that But if the answer should be "yes", then the bug is that I can see a good argument for either case. Given no other data, however, I'll move toward maintaining dartdoc's current "no" to this question and correct the bug as listed first, above. |
i think "no" is the only consistent answer. suppose you had |
oh nevermind, i misunderstood. Now that I understand what you mean, I think the answer should be yes, because otherwise it's omitting real information about the class hierarchy. Suppose C <- _B <- A, people will pass on Cs where As are expected. If I look at the docs and don't see A mentioned, I'll be confused. |
The argument against goes: If I want C to be of type A, I'll say C <- A via implements, rather than relying on it indirectly through the private class. However, come to think of it, the language has already answered this question: it says yes, A is part of the type information for C regardless of public/private distinction. Dartdoc should be documenting that reality. |
If the hierarchy is: class A {
/// Prints an 'a'.
void a() {
print('a');
}
}
class _B extends A {
/// Prints a 'b'.
void b() {
a();
print('b');
}
}
class C extends _B {
/// Prints a 'c'.
void c() {
b();
print('c');
}
} What should Dartdoc do about documenting the public function |
Correct. Dartdoc should document While my memory is a little fuzzy, I think the original bug is that the private type |
I just had someone stumble over this and think that I think the answer should be "yes". The reason for DartDoc to list interfaces implemented by a class is that it is useful information. Not listing transitively implemented types is reasonable because they are implied by the listed types. (Technically, if some class had (And for the record: I wrote the classes knowing that |
Do we have an idea of when this fix will be live on Another place I notices is that |
It looks like either a new variant of this problem has appeared, or the problem was not completely fixed by #2354. |
Closing this issue in favor of #2485. Problems with inheritance are indeed likely solved -- the implemented types list is what actually applies to Uint8List at least as of the current SDK (Uint8List does not inherit TypedData but implements it, and those paths are separate). |
Uint8List
: https://master-docs-flutter-io.firebaseapp.com/flutter/dart-typed_data/Uint8List-class.html...has a
buffer
property, which links toTypedData
'sbuffer
: https://master-docs-flutter-io.firebaseapp.com/flutter/dart-typed_data/TypedData/buffer.html...which implies that
Uint8List
is related toTypedData
, but this fact appears neither on the docs forUint8List
nor those fromTypedData
: https://master-docs-flutter-io.firebaseapp.com/flutter/dart-typed_data/TypedData-class.htmlThe text was updated successfully, but these errors were encountered: