[Bug 25993] New: Why do we disallow overloading across partial interfaces?

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25993

            Bug ID: 25993
           Summary: Why do we disallow overloading across partial
                    interfaces?
           Product: WebAppsWG
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: WebIDL
          Assignee: cam@mcc.id.au
          Reporter: bzbarsky@mit.edu
        QA Contact: public-webapps-bugzilla@w3.org
                CC: mike@w3.org, public-script-coord@w3.org

http://heycam.github.io/webidl/#idl-overloading explicitly disallows (with an
example and everything) things like this:

  interface A {
    void f();
  };

  partial interface A {
    void f(float x);
  };

but I think we have specs doing this (e.g. shadow DOM) and this seems an OK
thing to me in general, as long as people are careful.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Received on Thursday, 5 June 2014 14:30:12 UTC