SmallSense__TokenPatternParser.st
changeset 252 feba6ee5c814
parent 249 8bc64027b189
child 274 2cfcd8eb9761
equal deleted inserted replaced
251:7de7bc1693d6 252:feba6ee5c814
       
     1 "
       
     2 stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
       
     3 Copyright (C) 2013-2014 Jan Vrany
       
     4 
       
     5 This library is free software; you can redistribute it and/or
       
     6 modify it under the terms of the GNU Lesser General Public
       
     7 License as published by the Free Software Foundation; either
       
     8 version 2.1 of the License. 
       
     9 
       
    10 This library is distributed in the hope that it will be useful,
       
    11 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13 Lesser General Public License for more details.
       
    14 
       
    15 You should have received a copy of the GNU Lesser General Public
       
    16 License along with this library; if not, write to the Free Software
       
    17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    18 "
     1 "{ Package: 'stx:goodies/smallsense' }"
    19 "{ Package: 'stx:goodies/smallsense' }"
     2 
    20 
     3 "{ NameSpace: SmallSense }"
    21 "{ NameSpace: SmallSense }"
     4 
    22 
     5 Regex::RxParser subclass:#TokenPatternParser
    23 Regex::RxParser subclass:#TokenPatternParser
    15 	poolDictionaries:''
    33 	poolDictionaries:''
    16 	privateIn:TokenPatternParser
    34 	privateIn:TokenPatternParser
    17 !
    35 !
    18 
    36 
    19 !TokenPatternParser class methodsFor:'documentation'!
    37 !TokenPatternParser class methodsFor:'documentation'!
       
    38 
       
    39 copyright
       
    40 "
       
    41 stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
       
    42 Copyright (C) 2013-2014 Jan Vrany
       
    43 
       
    44 This library is free software; you can redistribute it and/or
       
    45 modify it under the terms of the GNU Lesser General Public
       
    46 License as published by the Free Software Foundation; either
       
    47 version 2.1 of the License. 
       
    48 
       
    49 This library is distributed in the hope that it will be useful,
       
    50 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    51 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    52 Lesser General Public License for more details.
       
    53 
       
    54 You should have received a copy of the GNU Lesser General Public
       
    55 License along with this library; if not, write to the Free Software
       
    56 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    57 "
       
    58 !
    20 
    59 
    21 documentation
    60 documentation
    22 "
    61 "
    23     A parser to parse token patterns
    62     A parser to parse token patterns
    24 
    63