GroovyLanguage.st
branchcvs_MAIN
changeset 3917 94088b7097d5
parent 3412 df11bb428463
child 3919 b84e9eb8f4ab
equal deleted inserted replaced
3916:f119b43d9ae4 3917:94088b7097d5
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 1996-2015 by Claus Gittinger
     4  COPYRIGHT (c) 1996-2015 by Claus Gittinger
     3 
     5 
     4  New code and modifications done at SWING Research Group [1]:
     6  New code and modifications done at SWING Research Group [1]:
     5 
     7 
    18      see the differences between this version and version stx:libjava
    20      see the differences between this version and version stx:libjava
    19      as of 1.9.2010
    21      as of 1.9.2010
    20 "
    22 "
    21 "{ Package: 'stx:libjava' }"
    23 "{ Package: 'stx:libjava' }"
    22 
    24 
       
    25 "{ NameSpace: Smalltalk }"
       
    26 
    23 ProgrammingLanguage subclass:#GroovyLanguage
    27 ProgrammingLanguage subclass:#GroovyLanguage
    24 	instanceVariableNames:''
    28 	instanceVariableNames:''
    25 	classVariableNames:''
    29 	classVariableNames:''
    26 	poolDictionaries:''
    30 	poolDictionaries:''
    27 	category:'Languages-Groovy-Support'
    31 	category:'Languages-Groovy-Support'
   144 
   148 
   145     "Created: / 06-09-2012 / 12:09:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   149     "Created: / 06-09-2012 / 12:09:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   146 ! !
   150 ! !
   147 
   151 
   148 !GroovyLanguage methodsFor:'source queries'!
   152 !GroovyLanguage methodsFor:'source queries'!
       
   153 
       
   154 bracketStrings
       
   155     "used for autoindent"
       
   156 
       
   157     ^ #(
       
   158             ('{' '}')      
       
   159         )
       
   160 
       
   161     "Created: / 26-06-2019 / 22:04:32 / Claus Gittinger"
       
   162 !
   149 
   163 
   150 commentStrings
   164 commentStrings
   151     ^ #(
   165     ^ #(
   152             '//'            "/ EOL comment
   166             '//'            "/ EOL comment
   153             ('/*' '*/')     "/ normal comment   
   167             ('/*' '*/')     "/ normal comment   
   199 ! !
   213 ! !
   200 
   214 
   201 !GroovyLanguage class methodsFor:'documentation'!
   215 !GroovyLanguage class methodsFor:'documentation'!
   202 
   216 
   203 version_CVS
   217 version_CVS
   204     ^ '$Header: /cvs/stx/stx/libjava/GroovyLanguage.st,v 1.5 2015-03-20 12:07:59 vrany Exp $'
   218     ^ '$Header$'
   205 !
   219 !
   206 
   220 
   207 version_HG
   221 version_HG
   208 
   222 
   209     ^ '$Changeset: <not expanded> $'
   223     ^ '$Changeset: <not expanded> $'
   210 !
   224 !
   211 
   225 
   212 version_SVN
   226 version_SVN
   213     ^ 'Id'
   227     ^ '$Id$'
   214 ! !
   228 ! !
   215 
   229