blob: 213499b3b11e049ed2f0e61f2689538eeb6e53aa [file] [log] [blame]
>>>
class MyComponent {
Object firstArgument;
Object superDuperLongNamedArgument;
Object secondArgument;
MyComponent(
@Inject(const MyFirstArgument()) this.firstArgument,
@Inject(const MySuperDuperLongNamedArgument())
this.superDuperLongNamedArgument, // LOOK AT ME
@Inject(const MySecondArgument()) this.secondArgument);
}
<<<
class MyComponent {
Object firstArgument;
Object superDuperLongNamedArgument;
Object secondArgument;
MyComponent(
@Inject(const MyFirstArgument()) this.firstArgument,
@Inject(const MySuperDuperLongNamedArgument())
this.superDuperLongNamedArgument, // LOOK AT ME
@Inject(const MySecondArgument()) this.secondArgument,
);
}