Changes between Version 140 and Version 141 of WebKitIDL
- Timestamp:
- Oct 9, 2015, 9:31:07 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v140 v141 57 57 - [#OverrideBuiltins OverrideBuiltins(i)][[br]] 58 58 - [#Unforgeable Unforgeable(i)][[br]] 59 - [#JSBuiltin JSBuiltin(m ), JSBuiltinConstructor(i)][[br]]59 - [#JSBuiltin JSBuiltin(m,a), JSBuiltinConstructor(i)][[br]] 60 60 61 61 = Overview = #Overview … … 1580 1580 }}} 1581 1581 1582 == `[JSBuiltin]`(m ) `[JSBuiltinConstructor]`(i) == #JSBuiltin1582 == `[JSBuiltin]`(m,a) `[JSBuiltinConstructor]`(i) == #JSBuiltin 1583 1583 1584 1584 Standard: This is a non-standard attribute. 1585 1585 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.1586 Summary: 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. 1587 1587 1588 1588 Usage: 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.