Skip to content

Aliases for entries #1836

Open
Open
@dnfield

Description

@dnfield

See flutter/flutter#24351

We redid a bunch of classes that were declared like this:

abstract class ReallyAMixin {
  factory ReallyAMixin._() => null;
  ...
}

To this:

mixin ReallyAMixin {
}

Which now is resulting in a new Dart doc link (...-mixin.html instead of ...-class.html), which is breaking external links. Is there some sensible way we could alias ReallyAMixin-class.html to ReallyAMixin-mixin.html? Obiviously for docs we control we should just update the links, but this might hurt things like old StackOverflow answers or blog posts.

/cc @gspencergoog @sfshaza2

Metadata

Metadata

Assignees

No one assigned

    Labels

    P2A bug or feature request we're likely to work oncustomer-flutterIssues originating from important to Fluttertype-enhancementA request for a change that isn't a bug

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions