blob: 944f0f270cc233348ddcfceda6c11ec45945787f [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);
}