xquery/trunk/XQuery__XQueryCompiler.st
changeset 235 e2a2fac1f45f
child 241 e28ef0f20186
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xquery/trunk/XQuery__XQueryCompiler.st	Tue Apr 06 20:48:34 2010 +0000
@@ -0,0 +1,31 @@
+"{ Package: 'stx:goodies/xmlsuite/xquery' }"
+
+"{ NameSpace: XQuery }"
+
+Perseus::Compiler subclass:#XQueryCompiler
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'XQuery-Core'
+!
+
+
+!XQueryCompiler methodsFor:'compiler interface'!
+
+compile: aNode
+
+    "This is a dummy method (for now). Required by Perseus framework"
+
+    ^XQueryQuery new 
+        bodyNode: aNode;
+        yourself
+
+    "Created: / 18-09-2008 / 17:00:29 / Jan Vrany <vranyj1@fel.cvut.cz>"
+    "Modified: / 22-11-2008 / 08:13:20 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!XQueryCompiler class methodsFor:'documentation'!
+
+version
+    ^'$Id$'
+! !