IsEqualTo static method
Implementation
static bool IsEqualTo(IndexedPropertyDefinition idxPropDef1,
IndexedPropertyDefinition idxPropDef2) {
return identical(idxPropDef1, idxPropDef2) ||
(idxPropDef1 != null &&
idxPropDef2 != null &&
idxPropDef1.Uri == idxPropDef2.Uri &&
idxPropDef1.Index == idxPropDef2.Index);
}