[Webkit-unassigned] [Bug 99007] New: [WebKit IDL] remove all module from idl files.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 11 01:05:40 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=99007

           Summary: [WebKit IDL] remove all module from idl files.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebCore JavaScript
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: tasak at google.com


Now WebIDL spec, c.f. http://www.w3.org/TR/WebIDL/, doesn't have "module":

07 February 2012 – LCWD #3
Removed modules and [NamespaceObject].

And WebKit uses "module", but no code is generated from "module". 
For example, the following (before) will be modified into the following (after).

(before)
module SomeModule {
   interface [] someInterface {
    ...
   };
}

(after)
interface [] someInterface {
  ...
};

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list