benleggiero
02/19/2017, 4:49 AMvoddan
02/19/2017, 7:24 AMinline
sreich
02/19/2017, 12:32 PMbenleggiero
02/19/2017, 5:06 PMbenleggiero
02/19/2017, 5:09 PMclass Foo(val bar: Bar) {
constructor(baz: Baz): this(baz.toBar())
}
Foo(Baz())
What's the point of adding a new stack frame when we know Foo(Baz())
is always always always going to be exactly the same as Foo(Baz().toBar())
?voddan
02/19/2017, 9:14 PMbenleggiero
03/05/2017, 4:00 PMinline
to pull the contents of a function out of its own stack frame and into the caller'ssreich
03/05/2017, 7:01 PMbenleggiero
03/06/2017, 12:59 AM