Changes between Version 138 and Version 139 of WebKitIDL


Ignore:
Timestamp:
Sep 24, 2015 5:32:13 AM (9 years ago)
Author:
youenn.fablet@crf.canon.fr
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v138 v139  
    5757 - [#OverrideBuiltins OverrideBuiltins(i)][[br]]
    5858 - [#Unforgeable Unforgeable(i)][[br]]
     59 - [#JSBuiltin JSBuiltin(i), JSBuiltinConstructor(i)][[br]]
    5960
    6061= Overview = #Overview
     
    15781579    };
    15791580}}}
     1581
     1582== `[JSBuiltin JSBuiltinConstructor]`(i) == #JSBuiltin
     1583
     1584Standard: This is a non-standard attribute.
     1585
     1586Summary: If JSBuiltin is set, it tells the code generator to implement the corresponding method as a JS builtin. If JSBuiltinConstructor is set, a JS builtin constructor function is called.
     1587
     1588Usage: given a IDL file called XX.idl, a corresponding XX.js file should be created containing a JS function with the same method name in the case of JSBuiltin or a JS function with the name 'initializeXX' in the case of JSBuiltinConstructor.
     1589