Open
Bug 772822
Opened 13 years ago
Updated 3 years ago
We should have a way to detect nameless special operations in IDLMethod
Categories
(Core :: DOM: Core & HTML, defect, P5)
Core
DOM: Core & HTML
Tracking
()
NEW
People
(Reporter: peterv, Unassigned)
Details
Right now we detect them by checking |method.identifier.name[:2] == "__"|, which seem rather hacky.
Comment 1•13 years ago
|
||
This seems to have been fixed, but the FIXME comment is still in the code.
dom/bindings/Codegen.py:
# FIXME https://bugzilla.mozilla.org/show_bug.cgi?id=772822
# We should be able to check for special operations without an
# identifier. For now we check if the name starts with __
| Reporter | ||
Comment 2•13 years ago
|
||
This wasn't fixed, but the comment is not next to the check anymore :-/. isIdentifierLess() does |return self.identifier.name[:2] == "__"|/
Comment 3•7 years ago
|
||
https://bugzilla.mozilla.org/show_bug.cgi?id=1472046
Move all DOM bugs that haven’t been updated in more than 3 years and has no one currently assigned to P5.
If you have questions, please contact :mdaly.
Priority: -- → P5
| Assignee | ||
Updated•7 years ago
|
Component: DOM → DOM: Core & HTML
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•