xquery/trunk/XQuery__AstContextItemExpr.st
changeset 0 5057afe1ec87
child 232 9d8fd28b99b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xquery/trunk/XQuery__AstContextItemExpr.st	Tue Apr 08 19:47:42 2008 +0000
@@ -0,0 +1,38 @@
+"{ Package: 'stx:goodies/xmlsuite/xquery' }"
+
+"{ NameSpace: XQuery }"
+
+AstNode subclass:#AstContextItemExpr
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'XQuery-AST'
+!
+
+
+!AstContextItemExpr methodsFor:'testing'!
+
+isAstContextItemExpr
+    ^ true
+
+    "Created: / 07-11-2006 / 22:03:57 / ked"
+! !
+
+!AstContextItemExpr methodsFor:'visiting'!
+
+acceptVisitor:aVisitor 
+    "Double dispatch back to the visitor, passing my type encoded in
+     the selector (visitor pattern)"
+
+    "stub code automatically generated - please change if required"
+
+    ^ aVisitor visitAstContextItemExpr:self
+
+    "Created: / 07-11-2006 / 22:04:03 / ked"
+! !
+
+!AstContextItemExpr class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xquery/XQuery__AstContextItemExpr.st,v 1.1 2006-12-05 14:06:38 vranyj1 Exp $'
+! !