mirrorme2 0.1.0 copy "mirrorme2: ^0.1.0" to clipboard
mirrorme2: ^0.1.0 copied to clipboard

A mirrors helper library; adjusted for Dart 2 by Ross Albertson

Mirror me #

A mirrors helper library for the dart language.

Walkthrough

This is how you can scrap the metadata info from an object.

MetaDataHelper<MetaData, MethodMirror> mirrorHelper = new MetaDataHelper<MetaData, MethodMirror>();
List<MetaDataValue<MetaData>> mirrorModels = mirrorHelper.from(new Anno());

The annotated class.

class Anno {

  @MetaData("test")
  void test() {}
  
}

MetaDataValue has the following fields:

Symbol memberName;
InstanceMirror instanceMirror;
T object;

Search for classes that implement or extend for example the class Anno.

ClassSearcher<Anno> searcher = new ClassSearcher<Anno>();
List<Anno> searchResult = searcher.scan();

Notes to Contributors #

Fork Mirrorme

If you'd like to contribute back to the core, you can fork this repository and send us a pull request, when it is ready.

If you are new to Git or GitHub, please read this guide first.

For usage see Dart Force

Realtime web framework for dart that uses forcemvc & mirrorme & wired source code

0
likes
15
pub points
2%
popularity

Publisher

unverified uploader

A mirrors helper library; adjusted for Dart 2 by Ross Albertson

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on mirrorme2