summaryrefslogtreecommitdiff
path: root/test/files/jvm/xmlstuff.check
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-02-11 11:49:26 +0000
committerburaq <buraq@epfl.ch>2004-02-11 11:49:26 +0000
commitda6966888b1703c69dfe17f7f471565edc46e5a2 (patch)
tree92fce0402f318a339eef05d6efe1ee0767b99192 /test/files/jvm/xmlstuff.check
parentbd2cb9d56f03843f34c6580983d96731d6dd14e2 (diff)
downloadscala-da6966888b1703c69dfe17f7f471565edc46e5a2.tar.gz
scala-da6966888b1703c69dfe17f7f471565edc46e5a2.tar.bz2
scala-da6966888b1703c69dfe17f7f471565edc46e5a2.zip
these are jvm dependent
Diffstat (limited to 'test/files/jvm/xmlstuff.check')
-rw-r--r--test/files/jvm/xmlstuff.check29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/files/jvm/xmlstuff.check b/test/files/jvm/xmlstuff.check
new file mode 100644
index 0000000000..4636a6f8b4
--- /dev/null
+++ b/test/files/jvm/xmlstuff.check
@@ -0,0 +1,29 @@
+NodeList('world)
+NodeList('world)
+
+parsedxml2/'_
+NodeList('book('author(Text(Peter Buneman)),'author(Text(Dan Suciu)),'title(Text(Data on ze web))),'book('author(Text(John Mitchell)),'title(Text(Foundations of Programming Languages))))
+
+parsedxml2/'author
+NodeList()
+
+parsedxml2/'book:
+NodeList('book('author(Text(Peter Buneman)),'author(Text(Dan Suciu)),'title(Text(Data on ze web))),'book('author(Text(John Mitchell)),'title(Text(Foundations of Programming Languages))))
+
+parsedxml2/'_/'_
+NodeList('author(Text(Peter Buneman)),'author(Text(Dan Suciu)),'title(Text(Data on ze web)),'author(Text(John Mitchell)),'title(Text(Foundations of Programming Languages)))
+
+parsedxml2/'_/'author
+NodeList('author(Text(Peter Buneman)),'author(Text(Dan Suciu)),'author(Text(John Mitchell)))
+
+parsedxml2/'_/'_/'author
+NodeList()
+
+parsedxml2/#'author
+NodeList('author(Text(Peter Buneman)),'author(Text(Dan Suciu)),'author(Text(John Mitchell)))
+
+new NodeList(List(parsedxml2))/#'_
+NodeList('book('author(Text(Peter Buneman)),'author(Text(Dan Suciu)),'title(Text(Data on ze web))),'author(Text(Peter Buneman)),Text(Peter Buneman),'author(Text(Dan Suciu)),Text(Dan Suciu),'title(Text(Data on ze web)),Text(Data on ze web),'book('author(Text(John Mitchell)),'title(Text(Foundations of Programming Languages))),'author(Text(John Mitchell)),Text(John Mitchell),'title(Text(Foundations of Programming Languages)),Text(Foundations of Programming Languages))
+
+new NodeList(List(parsedxml2))/#'title
+NodeList('title(Text(Data on ze web)),'title(Text(Foundations of Programming Languages)))