Lines Matching defs:lowerExists
1989 // d. Let lowerExists be HasProperty(O, lowerP).
1990 // e. ReturnIfAbrupt(lowerExists).
1991 // f. If lowerExists is true, then
1999 // j. If lowerExists is true and upperExists is true, then
2004 // k. Else if lowerExists is false and upperExists is true, then
2009 // l. Else if lowerExists is true and upperExists is false, then
2014 // m. Else both lowerExists and upperExists are false,
2029 bool lowerExists = (JSTaggedValue::HasProperty(thread, thisObjVal, lowerP));
2031 if (lowerExists) {
2041 if (lowerExists && upperExists) {
2051 } else if (lowerExists) {