zengen 0.1.0 zengen: ^0.1.0 copied to clipboard
A transformer to generate boilerplate code.
ZenGen #
This project provides a pub transformer to generate boilerplate code. This library is inspired from the project Lombok in the Java world.
Warning #
Dart file modifications are not yet well integrated in the Dart editor.
If you run a web app use pub serve
and launch dartium with localhost:8080
instead of Run in Dartium on your original file.
If you run a server app launch the built version of your dart file after a pub build
instead of Run on your original file.
Features #
@ToString() #
Annotating a class with @ToString()
will generate an implementation of String toString()
.
For instance :
@ToString()
class A {
final a;
final int b;
A(this.a, this.b);
}
will be transformed to :
@ToString()
class A {
final a;
final int b;
A(this.a, this.b);
@generated @override String toString() => "A(a=$a, b=$b)";
}
@EqualsAndHashCode() #
Annotating a class with @EqualsAndHashCode()
will generate an implementation of bool operator ==(o)
and int get hashCode
.
For instance :
@EqualsAndHashCode()
class A {
final a;
final int b;
A(this.a, this.b);
}
will be transformed to :
@EqualsAndHashCode()
class A {
final a;
final int b;
A(this.a, this.b);
@generated @override int get hashCode => hashObjects([a, b]);
@generated @override bool operator ==(o) => o is A && o.a == a && o.b == b;
}
Usage #
To use this library in your code :
- add a dependency in your
pubspec.yaml
:
dependencies:
zengen: any
- add the transformer in your
pubspec.yaml
:
transformers:
- zengen
- add import in your
dart
code :
import 'package:zengen/zengen.dart';
License #
Apache 2.0