ajinasokan / dartgen

An inline generator collection for Dart & Flutter projects
https://pub.dev/packages/dartgenerate
MIT License
34 stars 4 forks source link

Support Dart 2.13+ #2

Open bjornm opened 1 year ago

bjornm commented 1 year ago

The dartgenerate currently doesn't understand dart 2.13+ so it won't parse source code with modern features, such as these kinds of typedef:

typedef Foo = List<String>;

Would it be possible to bump the dependencies of dart sdk and analyzer to make this work? I can help out if needed.

ajinasokan commented 1 year ago

Sorry I'm late by an year 😅 I just pushed an update to pub with support for Dart 3. Could you try with that?

bjornm commented 1 year ago

Thanks! Will try!