2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-03 17:58:21 +00:00

Annotations

This commit is contained in:
2022-06-16 04:51:26 +03:00
parent 0f52fec828
commit 437121f223
10 changed files with 189 additions and 286 deletions

View File

@@ -1,4 +1,3 @@
class TemplateDescriber {
final List<Prop>? properties;
final List<Evt>? events;
@@ -8,6 +7,7 @@ class TemplateDescriber {
final String nameSpace;
final int version;
final Type? parent;
final String? annotation;
const TemplateDescriber(this.nameSpace,
{this.parent,
@@ -15,7 +15,8 @@ class TemplateDescriber {
this.functions,
this.events,
this.constants,
this.version = 0});
this.version = 0,
this.annotation = null});
}
// class Property<T> {