- From: Robin Berjon via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 02 Dec 2009 17:42:15 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/test-spec In directory hutz:/tmp/cvs-serv13741/test-spec Modified Files: webidl.html Log Message: implemented nullable support, ISSUE-51 Index: webidl.html =================================================================== RCS file: /sources/public/2009/dap/ReSpec.js/test-spec/webidl.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- webidl.html 2 Dec 2009 17:10:08 -0000 1.11 +++ webidl.html 2 Dec 2009 17:42:13 -0000 1.12 @@ -450,5 +450,32 @@ <dd>wrapped</dd> </dl> </section> + + <section> + <h2>Nullable</h2> + <p> + On all members that support it. + </p> + <dl title='interface NullableStuff' class='idl'> + <dt>const boolean? ARE_WE_THERE_YET = false</dt> + <dd>on const</dd> + <dt>attribute unsigned long? viciousness</dt> + <dd>on attribute</dd> + <dt>void nullMe (in MaybeNull? foo)</dt> + <dd>on simple method</dd> + <dt>unsigned long? nullRet ()</dt> + <dd>on simple method return</dd> + <dt>void extendedNull ()</dt> + <dd> + With the extended syntax + <dl class='parameters'> + <dt>unsigned long? foo</dt> + <dd> + Specifies foo, nullable. + </dd> + </dl> + </dd> + </dl> + </section> </body> </html>
Received on Wednesday, 2 December 2009 17:42:18 UTC