Git Product home page Git Product logo

Comments (1)

alan-knight avatar alan-knight commented on May 5, 2024

There are no plans at the moment, but pull requests are welcomed :-) This is mostly a proof of concept/suitable for very simple cases. It would be perfectly reasonable to make something based on it that understands more about your conventions. But it would also be nice to improve this one.

The point of the transformer is to avoid using mirrors. If you're willing to use mirrors, the BasicRule does provide quite a bit more ability to specify the constructor to use, the parameters, and so on. But you'd have to do the MirrorsUsed annotations.

Even in the transformer case, using the analyzer it ought to be possible to get enough information to do fairly arbitrary things, the issue is how complicated it is to specify, and which cases to handle. The rules are not that difficult to write by hand, so at some point writing sufficiently general annotations is not that much better than writing the line of code that calls the constructor directly.

If you can use something opinionated/project-specific the annotation approach could be a lot simpler. e.g. you could do

class Foo {
@UseInConstructor
var thing;
var otherThing;
Foo(this.thing);
}

And you're just left with figuring out the order in which to put things in the constructor, or else enforcing that the name in the constructor must agree with the variable name.

Inheritance with constructor parameters is particularly tricky to do in general, because you could have cases like
Foo(this.a, b, c, this.d, e) : super(c, e, namedThing: b);

from serialization.dart.

Related Issues (11)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.