summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2012-10-21 14:44:06 +0100
committerVincent Sanders <vince@kyllikki.org>2012-10-21 14:44:06 +0100
commit8d9fcaaa445b95ba4c934dbdb40b98ae81bf8785 (patch)
treeb9d90b1806a8535457b46e03220cb15d4c0bc7b2 /test
parentfaf4aabdbbaacf69f4a8fe4cf4d0084ee0b6744e (diff)
downloadnsgenbind-8d9fcaaa445b95ba4c934dbdb40b98ae81bf8785.tar.gz
nsgenbind-8d9fcaaa445b95ba4c934dbdb40b98ae81bf8785.tar.bz2
split type and identifier in private entries
Diffstat (limited to 'test')
-rw-r--r--test/data/bindings/htmldocument.bnd6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/data/bindings/htmldocument.bnd b/test/data/bindings/htmldocument.bnd
index 310fc29..8f85ca3 100644
--- a/test/data/bindings/htmldocument.bnd
+++ b/test/data/bindings/htmldocument.bnd
@@ -20,7 +20,7 @@ preamble %{
#include "javascript/jsapi.h"
- %}
+%}
operation write %{
LOG(("content %p parser %p writing %s",
@@ -37,8 +37,8 @@ binding document {
/* parameters to constructor value stored in private
* context structure.
*/
- private "dom_document *node";
- private "struct html_content *htmlc";
+ private "dom_document *" node;
+ private "struct html_content *" htmlc;
interface Document; /* Web IDL interface to generate */
}