summaryrefslogtreecommitdiff
path: root/third_party/WebIDL.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-05-15 12:32:27 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-05-15 12:32:27 -0700
commitafed8b5259db9f5a7e9a417c13669f29d8ae3d15 (patch)
tree44ca920e2bebc11570cb1f9cec8a47225703a3f3 /third_party/WebIDL.py
parentd470387f096d6427720a9c8a61776fa3d276683e (diff)
support const methods, not just attributes, in webidl binder
Diffstat (limited to 'third_party/WebIDL.py')
-rw-r--r--third_party/WebIDL.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/WebIDL.py b/third_party/WebIDL.py
index 1ce44e06..a94cb528 100644
--- a/third_party/WebIDL.py
+++ b/third_party/WebIDL.py
@@ -3443,6 +3443,7 @@ class IDLMethod(IDLInterfaceMember, IDLScope):
identifier == "Ref" or
identifier == "Value" or
identifier == "Operator" or
+ identifier == "Const" or
identifier == "WebGLHandlesContextLoss"):
# Known attributes that we don't need to do anything with here
pass