Index: Source/bindings/dart/scripts/dart_attributes.py |
diff --git a/Source/bindings/dart/scripts/dart_attributes.py b/Source/bindings/dart/scripts/dart_attributes.py |
index 0507ecc4fc9be8cd48986b67ff9baef47c59525b..908377ce1eae4f1793a0f1fd99eed9a3a6d6b7b7 100644 |
--- a/Source/bindings/dart/scripts/dart_attributes.py |
+++ b/Source/bindings/dart/scripts/dart_attributes.py |
@@ -99,12 +99,10 @@ def attribute_context(interface, attribute): |
native_entry_getter = \ |
DartUtilities.generate_native_entry(interface.name, context, |
- attribute.name, 'Getter', |
- None, [], None) |
+ attribute.name, 'Getter', []) |
native_entry_setter = \ |
DartUtilities.generate_native_entry(interface.name, context, |
- attribute.name, 'Setter', |
- None, ["value"], None) |
+ attribute.name, 'Setter', ["value"]) |
context.update({ |
'native_entry_getter': native_entry_getter, |
'native_entry_setter': native_entry_setter, |