Changes between Version 140 and Version 141 of WebKitIDL


Ignore:
Timestamp:
Oct 9, 2015 9:31:07 AM (9 years ago)
Author:
youenn.fablet@crf.canon.fr
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v140 v141  
    5757 - [#OverrideBuiltins OverrideBuiltins(i)][[br]]
    5858 - [#Unforgeable Unforgeable(i)][[br]]
    59  - [#JSBuiltin JSBuiltin(m), JSBuiltinConstructor(i)][[br]]
     59 - [#JSBuiltin JSBuiltin(m,a), JSBuiltinConstructor(i)][[br]]
    6060
    6161= Overview = #Overview
     
    15801580}}}
    15811581
    1582 == `[JSBuiltin]`(m) `[JSBuiltinConstructor]`(i) == #JSBuiltin
     1582== `[JSBuiltin]`(m,a) `[JSBuiltinConstructor]`(i) == #JSBuiltin
    15831583
    15841584Standard: This is a non-standard attribute.
    15851585
    1586 Summary: 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.
     1586Summary: If JSBuiltin is set, it tells the code generator to implement the corresponding method (or attribute getter) as a JS builtin. If JSBuiltinConstructor is set, a JS builtin constructor function is called.
    15871587
    15881588Usage: 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.