[Webkit-unassigned] [Bug 80618] New: Generated ObjC binding code is incorrect for static functions

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 8 11:36:56 PST 2012


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

           Summary: Generated ObjC binding code is incorrect for static
                    functions
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.7
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebCore JavaScript
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jonlee at apple.com


In TestObj.idl:

        static void classMethod();
        static long classMethodWithOptional(in [Optional] long arg);

Leads to generated code:

- (void)classMethod
{
    WebCore::JSMainThreadNullState state;
    IMPL->classMethod();
}

- (int)classMethodWithOptional:(int)arg
{
    WebCore::JSMainThreadNullState state;
    return IMPL->classMethodWithOptional(arg);
}

-- 
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