This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
The following is a statement of fact (drop "MUST NOT" and say "can't"): An exception must not be declared such that its inheritance hierarchy has a cycle. That is, an interface A cannot inherit from itself, nor can it inherit from another interface B that inherits from A, and so on. The inheritance loop check needs to be performed during binding (it is redundant to say MUST here).
I've thought a bit more about this one... keep it. But the algorithm in the binding section needs to take this requirement into consideration! I.e., binding needs to have error handling defined, if it doesn't already. And I don't think it currently does.
Do you mean the requirements for the prototype property in #es-interfaces needs to handle invalid IDL like interface A : B { }; interface B : A { }; ? I don't think we really need to. It's clearly an error, and we don't want implementors to deal with the problem in some way, we want the specs to be fixed. :)
ok, fair enough. Easy enough to fix later if it comes up as an issue.