SmallSense__TokenPatternTokenSet.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 09 Jul 2014 12:06:40 +0100
changeset 249 8bc64027b189
parent 203 c70b7351eda6
child 252 feba6ee5c814
permissions -rw-r--r--
Package renamed to stx:goodies/smallsense

"{ Package: 'stx:goodies/smallsense' }"

"{ NameSpace: SmallSense }"

Regex::RxsCharSet subclass:#TokenPatternTokenSet
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SmallSense-Utils-Matcher'
!

!TokenPatternTokenSet methodsFor:'accessing'!

dispatchTo: aMatcher
        "Inform the matcher of the kind of the node, and it
        will do whatever it has to."

        ^aMatcher syntaxTokenSet: self

    "Created: / 09-05-2014 / 16:18:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

tokens
    ^ elements

    "Created: / 09-05-2014 / 16:20:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !