Пример #1
0
 @Override
 public boolean isPropertyInExterns(String propertyName) {
   Property p = properties.get(propertyName);
   if (p != null) {
     return p.isFromExterns();
   }
   ObjectType implicitPrototype = getImplicitPrototype();
   if (implicitPrototype != null) {
     return implicitPrototype.isPropertyInExterns(propertyName);
   }
   return false;
 }