Closed
Bug 1583819
Opened 6 years ago
Closed 6 years ago
Webidl parser should report error if there are multiple definitions with same identifier from the different mixin interfaces
Categories
(Core :: DOM: Bindings (WebIDL), defect, P1)
Core
DOM: Bindings (WebIDL)
Tracking
()
RESOLVED
FIXED
mozilla71
| Tracking | Status | |
|---|---|---|
| firefox71 | --- | fixed |
People
(Reporter: edgar, Assigned: edgar)
Details
Attachments
(1 file)
For example,
interface A {
void method();
};
interface mixin MixIn1 {
void method();
};
interface mixin MixIn2 {
void method();
};
A includes MixIn1;
A includes MixIn2;
I guess we will get build error on generated code.
| Assignee | ||
Comment 1•6 years ago
|
||
Updated•6 years ago
|
Priority: -- → P1
Pushed by echen@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/2083ea3c6230
Webidl parser should report error if there are multiple definitions with same identifier from the mixin interfaces; r=bzbarsky
Comment 3•6 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 6 years ago
status-firefox71:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla71
You need to log in
before you can comment on or make changes to this bug.
Description
•