Searched refs:maybe_list (Results 1 – 2 of 2) sorted by relevance
521 Object* maybe_list = templ->property_list(); in AddPropertyToPropertyList() local523 if (maybe_list->IsUndefined(isolate)) { in AddPropertyToPropertyList()526 list = handle(TemplateList::cast(maybe_list), isolate); in AddPropertyToPropertyList()615 Object* maybe_list = info->property_accessors(); in AddNativeDataProperty() local617 if (maybe_list->IsUndefined(isolate)) { in AddNativeDataProperty()620 list = handle(TemplateList::cast(maybe_list), isolate); in AddNativeDataProperty()
511 def list_to_tuple(maybe_list): argument513 if isinstance(maybe_list, list):514 return tuple(maybe_list)515 return maybe_list