SmallSenseSelectorNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 30 Jul 2013 23:34:56 +0100
changeset 45 408d060b005e
parent 32 658f47bc231e
permissions -rw-r--r--
Fix in completion class vars and pools for class-side methods.

"
 COPYRIGHT (c) 2006 by eXept Software AG
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'jv:smallsense' }"

ParseNode subclass:#SmallSenseSelectorNode
	instanceVariableNames:'receiver selectors selectorsPosition lines'
	classVariableNames:''
	poolDictionaries:''
	category:'SmallSense-Core'
!

!SmallSenseSelectorNode class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2006 by eXept Software AG
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!SmallSenseSelectorNode methodsFor:'accessing'!

lines
    ^ lines
!

lines:something
    lines := something.
!

receiver
    ^ receiver
!

receiver:something
    receiver := something.
!

selectors
    ^ selectors
!

selectors:something
    selectors := something.
!

selectorsPosition
    ^ selectorsPosition
!

selectorsPosition:something
    selectorsPosition := something.
! !

!SmallSenseSelectorNode methodsFor:'printing & storing'!

printOn:aStream indent:i 
selectors printString printOn:aStream.

    "Created: / 22-02-2011 / 22:01:05 / Jakub <zelenja7@fel.cvut.cz>"
! !

!SmallSenseSelectorNode methodsFor:'testing'!

isSelector
    ^ true

    "Modified: / 08-04-2011 / 21:11:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!SmallSenseSelectorNode class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
!

version_SVN
    ^ '$Id: SmallSenseSelectorNode.st 7823 2011-11-26 16:55:59Z vranyj1 $'
! !