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

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

"{ NameSpace: XQuery }"

AstNode subclass:#AstStringLiteral
	instanceVariableNames:'content'
	classVariableNames:''
	poolDictionaries:''
	category:'XQuery-AST'
!


!AstStringLiteral methodsFor:'accessing'!

content
    ^ content

    "Created: / 02-04-2006 / 21:33:03 / ked"
!

content:something
    content := something.

    "Created: / 02-04-2006 / 21:33:03 / ked"
! !

!AstStringLiteral methodsFor:'testing'!

isAstStringLiteral
    ^ true

    "Modified: / 12-10-2006 / 21:57:47 / ked"
! !

!AstStringLiteral 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 visitAstStringLiteral:self

    "Created: / 06-07-2006 / 19:12:14 / ked"
! !

!AstStringLiteral class methodsFor:'documentation'!

version_SVN
    ^ '$Id$'
! !