xquery/XQuery__XQueryCompiler.st
changeset 296 ea3dbc023c80
parent 241 e28ef0f20186
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xquery/XQuery__XQueryCompiler.st	Tue May 12 12:20:53 2015 +0100
@@ -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_SVN
+    ^ '$Id$'
+! !