From c81f1cc54134a3d542e3da08f00750955c986011 Mon Sep 17 00:00:00 2001 From: Chris Manchester Date: Wed, 25 Feb 2015 17:06:29 -0800 Subject: Add support for BinaryName attribute to servo's codegen (fixes #4435) r=jdm --- components/script/dom/bindings/codegen/parser/WebIDL.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'components/script/dom/bindings/codegen/parser/WebIDL.py') diff --git a/components/script/dom/bindings/codegen/parser/WebIDL.py b/components/script/dom/bindings/codegen/parser/WebIDL.py index 370ac7df7c0..7474f56baa2 100644 --- a/components/script/dom/bindings/codegen/parser/WebIDL.py +++ b/components/script/dom/bindings/codegen/parser/WebIDL.py @@ -3262,7 +3262,8 @@ class IDLAttribute(IDLInterfaceMember): identifier == "Frozen" or identifier == "AvailableIn" or identifier == "NewObject" or - identifier == "CheckPermissions"): + identifier == "CheckPermissions" or + identifier == "BinaryName"): # Known attributes that we don't need to do anything with here pass else: @@ -3861,7 +3862,8 @@ class IDLMethod(IDLInterfaceMember, IDLScope): identifier == "Pref" or identifier == "Func" or identifier == "AvailableIn" or - identifier == "CheckPermissions"): + identifier == "CheckPermissions" or + identifier == "BinaryName"): # Known attributes that we don't need to do anything with here pass else: -- cgit v1.2.3