| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 """This module provides shared functionality for systems to generate | 6 """This module provides shared functionality for systems to generate |
| 7 Dart APIs from the IDL database.""" | 7 Dart APIs from the IDL database.""" |
| 8 | 8 |
| 9 import copy | 9 import copy |
| 10 import re | 10 import re |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 'set': | 537 'set': |
| 538 Conversion('_convertDartToNative_Dictionary', 'Map', 'Dynamic'), | 538 Conversion('_convertDartToNative_Dictionary', 'Map', 'Dynamic'), |
| 539 }, | 539 }, |
| 540 | 540 |
| 541 'DOMString[]': { | 541 'DOMString[]': { |
| 542 'set': | 542 'set': |
| 543 Conversion( | 543 Conversion( |
| 544 '_convertDartToNative_StringArray', 'List<String>', 'List'), | 544 '_convertDartToNative_StringArray', 'List<String>', 'List'), |
| 545 }, | 545 }, |
| 546 | 546 |
| 547 'SerializedScriptValue': { | 547 'any': { |
| 548 'set IDBObjectStore.add': | 548 'set IDBObjectStore.add': |
| 549 Conversion('_convertDartToNative_SerializedScriptValue', | 549 Conversion('_convertDartToNative_SerializedScriptValue', |
| 550 'Dynamic', 'Dynamic'), | 550 'Dynamic', 'Dynamic'), |
| 551 'set IDBObjectStore.put': | 551 'set IDBObjectStore.put': |
| 552 Conversion('_convertDartToNative_SerializedScriptValue', | 552 Conversion('_convertDartToNative_SerializedScriptValue', |
| 553 'Dynamic', 'Dynamic'), | 553 'Dynamic', 'Dynamic'), |
| 554 'set IDBCursor.update': | 554 'set IDBCursor.update': |
| 555 Conversion('_convertDartToNative_SerializedScriptValue', | 555 Conversion('_convertDartToNative_SerializedScriptValue', |
| 556 'Dynamic', 'Dynamic'), | 556 'Dynamic', 'Dynamic'), |
| 557 }, | 557 }, |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 if match: | 939 if match: |
| 940 if type_name == 'DOMString[]': | 940 if type_name == 'DOMString[]': |
| 941 return DOMStringArrayTypeInfo(TypeData('Sequence'), self.TypeInfo('DOMSt
ring')) | 941 return DOMStringArrayTypeInfo(TypeData('Sequence'), self.TypeInfo('DOMSt
ring')) |
| 942 item_info = self.TypeInfo(match.group(1) or match.group(2)) | 942 item_info = self.TypeInfo(match.group(1) or match.group(2)) |
| 943 return SequenceIDLTypeInfo(type_name, TypeData('Sequence'), item_info) | 943 return SequenceIDLTypeInfo(type_name, TypeData('Sequence'), item_info) |
| 944 if not type_name in _idl_type_registry: | 944 if not type_name in _idl_type_registry: |
| 945 return InterfaceIDLTypeInfo(type_name, TypeData('Interface')) | 945 return InterfaceIDLTypeInfo(type_name, TypeData('Interface')) |
| 946 type_data = _idl_type_registry.get(type_name) | 946 type_data = _idl_type_registry.get(type_name) |
| 947 class_name = '%sIDLTypeInfo' % type_data.clazz | 947 class_name = '%sIDLTypeInfo' % type_data.clazz |
| 948 return globals()[class_name](type_name, type_data) | 948 return globals()[class_name](type_name, type_data) |
| OLD | NEW |