- From: Robin Berjon via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 03 Dec 2009 12:21:54 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/ReSpec.js/test-spec
In directory hutz:/tmp/cvs-serv19897/test-spec
Modified Files:
webidl.html
Log Message:
support for IDL arrays
Index: webidl.html
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/test-spec/webidl.html,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- webidl.html 3 Dec 2009 11:56:08 -0000 1.14
+++ webidl.html 3 Dec 2009 12:21:52 -0000 1.15
@@ -503,5 +503,34 @@
</dd>
</dl>
</section>
+
+ <section>
+ <h2>Arrays</h2>
+ <p>
+ On all members that support it.
+ </p>
+ <dl title='interface ArrayStuff' class='idl'>
+ <dt>attribute unsigned long[] viciousness</dt>
+ <dd>on attribute</dd>
+ <dt>void arrayMe (in ArrayThing[] foo)</dt>
+ <dd>on simple method</dd>
+ <dt>unsigned long[] arrayRet ()</dt>
+ <dd>on simple method return</dd>
+ <dt>void extendedArray ()</dt>
+ <dd>
+ With the extended syntax
+ <dl class='parameters'>
+ <dt>unsigned long[] foo</dt>
+ <dd>
+ An array of foo.
+ </dd>
+ </dl>
+ </dd>
+ </dl>
+ <p>
+ An array typedef:
+ </p>
+ <div class='idl' title='typedef foo::Stuff[] ArrayOfStuff'></div>
+ </section>
</body>
</html>
Received on Thursday, 3 December 2009 12:21:56 UTC