| Index: Source/bindings/scripts/generate-bindings.pl
|
| diff --git a/Source/bindings/scripts/generate-bindings.pl b/Source/bindings/scripts/generate-bindings.pl
|
| index bc56b3117911e6b8fcd711ca0d0e30e659416153..a03e39542abae8b69fd43038d23cfc4e7550d1b1 100755
|
| --- a/Source/bindings/scripts/generate-bindings.pl
|
| +++ b/Source/bindings/scripts/generate-bindings.pl
|
| @@ -147,10 +147,10 @@ foreach my $idlFile (@supplementedIdlFiles) {
|
| # Support for attributes of partial interfaces.
|
| foreach my $attribute (@{$interface->attributes}) {
|
| # Record that this attribute is implemented by $interfaceName.
|
| - $attribute->signature->extendedAttributes->{"ImplementedBy"} = $interfaceName;
|
| + $attribute->extendedAttributes->{"ImplementedBy"} = $interfaceName;
|
|
|
| # Add interface-wide extended attributes to each attribute.
|
| - applyInterfaceExtendedAttributes($interface, $attribute->signature->extendedAttributes);
|
| + applyInterfaceExtendedAttributes($interface, $attribute->extendedAttributes);
|
|
|
| push(@{$targetDataNode->attributes}, $attribute);
|
| }
|
| @@ -260,7 +260,7 @@ sub checkIDLAttributes
|
| checkIfIDLAttributesExists($idlAttributes, $interface->extendedAttributes, $idlFile);
|
|
|
| foreach my $attribute (@{$interface->attributes}) {
|
| - checkIfIDLAttributesExists($idlAttributes, $attribute->signature->extendedAttributes, $idlFile);
|
| + checkIfIDLAttributesExists($idlAttributes, $attribute->extendedAttributes, $idlFile);
|
| }
|
|
|
| foreach my $function (@{$interface->functions}) {
|
|
|