Searched refs:maybe_list (Results 1 – 2 of 2) sorted by relevance
535 Object maybe_list = templ->property_list(); in AddPropertyToPropertyList() local537 if (maybe_list.IsUndefined(isolate)) { in AddPropertyToPropertyList()540 list = handle(TemplateList::cast(maybe_list), isolate); in AddPropertyToPropertyList()634 Object maybe_list = info->property_accessors(); in AddNativeDataProperty() local636 if (maybe_list.IsUndefined(isolate)) { in AddNativeDataProperty()639 list = handle(TemplateList::cast(maybe_list), isolate); in AddNativeDataProperty()
1973 def list_to_tuple(maybe_list): argument1975 if isinstance(maybe_list, list):1976 return tuple(maybe_list)1977 return maybe_list