Zack Pierce
Zack Pierce
Thanks you for chiming in with your experiences and suggestions, @dhardy , @pitdicker , and @Centril . As of the latest updates based on those ideas, the [exemplar PR to...
This issue should be handled by Go 1.2, as noted in [this bug ticket](https://code.google.com/p/go/issues/detail?id=6084). It may still be worthwhile to correct here to help out people that may or may...
In this example, what class is the `InfoGraphicsDataModel.rawContent` property? Is that class mapped to anything in the injector? Also, Does the class for the `InfoGraphicsDataModel.rawContent` property contain any injection points...
Thanks for the clarification.
Alright, I think I'm still not comprehending the full class layout here. In particular, at what point in the object lifecycle is the `rawContent` property being set. Let's try to...
This error (a looping stack overflow) happens because the post-construct method execution happens as part of the same `injector.instantiate` call that creates the class. In `InjectSingletonResult`, we don't store the...
Also, an even-simpler test case for this scenario. Running it produces a stack overflow error (handily caught by FlexUnit). --- ``` class SelfClassRetrievingPostConstruct { [Inject] public var injector:Injector; public var...