Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Side by Side Diff: Source/bindings/scripts/v8_methods.py

Issue 466323002: IDL: Use Nullable for union type return value (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 if 'NotEnumerable' in extended_attributes: 395 if 'NotEnumerable' in extended_attributes:
396 property_attributes_list.append('v8::DontEnum') 396 property_attributes_list.append('v8::DontEnum')
397 if 'Unforgeable' in extended_attributes: 397 if 'Unforgeable' in extended_attributes:
398 property_attributes_list.append('v8::ReadOnly') 398 property_attributes_list.append('v8::ReadOnly')
399 if property_attributes_list: 399 if property_attributes_list:
400 property_attributes_list.insert(0, 'v8::DontDelete') 400 property_attributes_list.insert(0, 'v8::DontDelete')
401 return property_attributes_list 401 return property_attributes_list
402 402
403 403
404 def union_arguments(idl_type): 404 def union_arguments(idl_type):
405 """Return list of ['result0Enabled', 'result0', 'result1Enabled', ...] for u nion types, for use in setting return value""" 405 """Return list of ['result0', 'result1', ...] for union types, for use in se tting return value"""
406 return [arg 406 return ['result%d' % i
407 for i in range(len(idl_type.member_types)) 407 for i in range(len(idl_type.member_types))]
408 for arg in ['result%sEnabled' % i, 'result%s' % i]]
409 408
410 409
411 def argument_default_cpp_value(argument): 410 def argument_default_cpp_value(argument):
412 if not argument.default_value: 411 if not argument.default_value:
413 return None 412 return None
414 return argument.idl_type.literal_cpp_value(argument.default_value) 413 return argument.idl_type.literal_cpp_value(argument.default_value)
415 414
416 IdlTypeBase.union_arguments = None 415 IdlTypeBase.union_arguments = None
417 IdlUnionType.union_arguments = property(union_arguments) 416 IdlUnionType.union_arguments = property(union_arguments)
418 IdlArgument.default_cpp_value = property(argument_default_cpp_value) 417 IdlArgument.default_cpp_value = property(argument_default_cpp_value)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698