-
Notifications
You must be signed in to change notification settings - Fork 26.5k
Closed
Labels
effort1: hoursrefactoringIssue that involves refactoring or code-cleanupIssue that involves refactoring or code-cleanup
Milestone
Description
Example
class ClassWithDecorators {
@PropDecorator("p1") @PropDecorator("p2") a;
@PropDecorator("p3")
set b(value) {}
@PropDecorator("p4")
get b { return null;}
}
Should create an instance of ReflectionInfo with propMetadata set to
var m = {
"a": [const PropDecorator("p1"), const PropDecorator("p2")],
"b": [const PropDecorator("p3"), const PropDecorator("p4")],
};
Metadata
Metadata
Assignees
Labels
effort1: hoursrefactoringIssue that involves refactoring or code-cleanupIssue that involves refactoring or code-cleanup