Tools__LintService.st
changeset 14052 ebcdddd89b02
parent 13498 b8d845e42988
child 14972 0e176d3678b1
equal deleted inserted replaced
14051:607958377e4f 14052:ebcdddd89b02
   174 syntaxHighlight: delayed
   174 syntaxHighlight: delayed
   175 
   175 
   176     | service |
   176     | service |
   177     service := self service: #'Tools::CodeHighlightingService'.
   177     service := self service: #'Tools::CodeHighlightingService'.
   178     service notNil ifTrue:[
   178     service notNil ifTrue:[
   179         service process: delayed
   179         service processSafely: delayed
   180     ]
   180     ]
   181 
   181 
   182     "Created: / 05-08-2011 / 11:49:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   182     "Created: / 05-08-2011 / 11:49:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   183     "Modified: / 25-02-2014 / 19:57:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   183 ! !
   184 ! !
   184 
   185 
   185 !LintService methodsFor:'registering'!
   186 !LintService methodsFor:'registering'!
   186 
   187 
   187 fetchLintRuleHolder
   188 fetchLintRuleHolder
   212 ! !
   213 ! !
   213 
   214 
   214 !LintService class methodsFor:'documentation'!
   215 !LintService class methodsFor:'documentation'!
   215 
   216 
   216 version
   217 version
   217     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.9 2013-09-05 10:46:11 vrany Exp $'
   218     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.10 2014-02-25 20:03:46 vrany Exp $'
   218 !
   219 !
   219 
   220 
   220 version_CVS
   221 version_CVS
   221     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.9 2013-09-05 10:46:11 vrany Exp $'
   222     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.10 2014-02-25 20:03:46 vrany Exp $'
   222 ! !
   223 ! !
   223 
   224