Add external methods on JadeDynamicObjects for efficiency
Our usage of JDOs requires us to iterate properties to find properties by name, and to call multiple get methods for the same property. I expect we'd get better performance if JDOs had external methods such as findPropertyByName(name : String) : I...