Changes between Version 79 and Version 80 of WebKitIDL
- Timestamp:
- Oct 12, 2012, 3:31:56 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v79 v80 15 15 - [#Custom Custom(m,a), JSCustom(m,a), V8Custom(m,a), CustomGetter(a), JSCustomGetter(a), V8CustomGetter(a), CustomSetter(a), JSCustomSetter(a), V8CustomSetter(a)][[br]] 16 16 - [#CallWith CallWith(i,m,a)][[br]] 17 - [#StrictTypeChecking StrictTypeChecking(m,a )][[br]]17 - [#StrictTypeChecking StrictTypeChecking(m,a,p)][[br]] 18 18 - [#ReturnNewObject ReturnNewObject(m,a)][[br]] 19 19 - [#ImplementedAs ImplementedAs(m,a)][[br]] … … 536 536 For example, in case of func4(...), HTMLFoo::func3(ScriptArguments* arguments, ScriptCallStack* callstack, int a, int b) is called in WebCore. 537 537 538 == [StrictTypeChecking](m,a ) FIXME == #StrictTypeChecking538 == [StrictTypeChecking](m,a,p) FIXME == #StrictTypeChecking 539 539 540 540 Summary: ADD SUMMARY … … 547 547 548 548 ADD EXPLANATIONS 549 550 V8 and JSC: [StrictTypeChecking] can also be applied to a DOMString parameter in an overloaded method to make the 551 overload resolution only match for ECMAScript types null, undefined, string or object - and not number or boolean. 552 This is to permit overloads which are not "distinguishable" in WebIDL, for example: 553 554 {{{ 555 interface CanvasFoo { 556 void setColor(in [StrictTypeChecking] DOMString color); 557 void setColor(in float grayLevel); 558 }; 559 }}} 549 560 550 561 == [ReturnNewObject](m,a) == #ReturnNewObject