UnaryNode.st
changeset 3309 cea9c487db04
parent 2881 ae13393d1096
child 3333 fb37a7b53ed6
equal deleted inserted replaced
3308:4c871ebd0def 3309:cea9c487db04
   208 
   208 
   209 plausibilityCheckIn:aParser
   209 plausibilityCheckIn:aParser
   210     "check for funny selector - careful to do string compare instead
   210     "check for funny selector - careful to do string compare instead
   211      of symbol identity compare: I dont want to introduce these as symbols
   211      of symbol identity compare: I dont want to introduce these as symbols
   212      into the system (would make the '... is nowhere implemented' warning
   212      into the system (would make the '... is nowhere implemented' warning
   213      go away."
   213      go away.
       
   214      TODO: rewite to use lint/lint rules and apply them before accepting"
   214 
   215 
   215     |selectorSymbol|
   216     |selectorSymbol|
   216 
   217 
   217     "JV@2012-07-06: Do not check if receiver is Java package,
   218     "JV@2012-07-06: Do not check if receiver is Java package,
   218      otherwise it reports false-positives when working with Java code"
   219      otherwise it reports false-positives when working with Java code"
   367 ! !
   368 ! !
   368 
   369 
   369 !UnaryNode class methodsFor:'documentation'!
   370 !UnaryNode class methodsFor:'documentation'!
   370 
   371 
   371 version
   372 version
   372     ^ '$Header: /cvs/stx/stx/libcomp/UnaryNode.st,v 1.58 2012-07-06 11:45:56 vrany Exp $'
   373     ^ '$Header: /cvs/stx/stx/libcomp/UnaryNode.st,v 1.59 2013-08-31 11:30:27 cg Exp $'
   373 !
   374 !
   374 
   375 
   375 version_CVS
   376 version_CVS
   376     ^ '$Header: /cvs/stx/stx/libcomp/UnaryNode.st,v 1.58 2012-07-06 11:45:56 vrany Exp $'
   377     ^ '$Header: /cvs/stx/stx/libcomp/UnaryNode.st,v 1.59 2013-08-31 11:30:27 cg Exp $'
   377 ! !
   378 ! !
       
   379