xquery/XQuery__XPathDocumentTest.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 12 May 2015 12:20:53 +0100
changeset 296 ea3dbc023c80
parent 241 xquery/trunk/XQuery__XPathDocumentTest.st@e28ef0f20186
permissions -rw-r--r--
Post-convert fixes Removed intermediate `trunk` directories used for branching in SVN

"{ Package: 'stx:goodies/xmlsuite/xquery' }"

"{ NameSpace: XQuery }"

XPathKindTest subclass:#XPathDocumentTest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'XQuery-AST-XPath'
!


!XPathDocumentTest methodsFor:'printing'!

printOn: stream

    stream nextPutAll:'document-node()'

    "Created: / 15-11-2007 / 22:02:52 / janfrog"
! !

!XPathDocumentTest methodsFor:'testing'!

isXPathDocumentTest
    ^ true

    "Created: / 21-11-2007 / 11:07:13 / janfrog"
! !

!XPathDocumentTest 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 visitXPathDocumentTest:self

    "Created: / 17-11-2007 / 15:31:52 / janfrog"
! !

!XPathDocumentTest class methodsFor:'documentation'!

version_SVN
    ^ '$Id$'
! !