Home
last modified time | relevance | path

Searched refs:dst_dict (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/server2/
Dapi_data_source.py296 def _RenderTypeInformation(self, type_, dst_dict): argument
297 dst_dict['is_object'] = type_.property_type == model.PropertyType.OBJECT
299 dst_dict['choices'] = self._GenerateTypes(type_.choices)
302 if len(dst_dict['choices']) > 0:
303 dst_dict['choices'][-1]['last'] = True
305 dst_dict['link'] = self._GetLink(type_.ref_type)
307 dst_dict['array'] = self._GenerateType(type_.item_type)
309 dst_dict['enum_values'] = [
312 if len(dst_dict['enum_values']) > 0:
313 dst_dict['enum_values'][-1]['last'] = True
[all …]