Method.st
changeset 16847 b3e7faf77eb1
parent 16737 0d213799e299
child 16877 d4a452edacb5
equal deleted inserted replaced
16846:60b0b8de3c25 16847:b3e7faf77eb1
   431 
   431 
   432     "Modified: / 25-09-2007 / 16:15:24 / cg"
   432     "Modified: / 25-09-2007 / 16:15:24 / cg"
   433 !
   433 !
   434 
   434 
   435 comment
   435 comment
   436     "return the methods comment.
   436     "return the method's comment.
   437      This is done by searching for and returning the first comment
   437      This is done by searching for and returning the first comment
   438      from the methods source (excluding any double-quotes).
   438      from the methods source (excluding any double-quotes).
   439      Returns nil if there is no comment (or source is not available)."
   439      Returns nil if there is no comment (or source is not available)."
   440 
   440 
   441     |src parserClass|
   441     |src parserClass|
   977 
   977 
   978     "Created: / 02-07-2010 / 22:33:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   978     "Created: / 02-07-2010 / 22:33:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   979     "Modified: / 11-07-2010 / 19:38:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   979     "Modified: / 11-07-2010 / 19:38:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   980     "Modified (format): / 18-11-2011 / 14:47:06 / cg"
   980     "Modified (format): / 18-11-2011 / 14:47:06 / cg"
   981 ! !
   981 ! !
       
   982 
   982 
   983 
   983 !Method methodsFor:'accessing-visibility'!
   984 !Method methodsFor:'accessing-visibility'!
   984 
   985 
   985 isIgnored
   986 isIgnored
   986     "return true, if this is an ignored method.
   987     "return true, if this is an ignored method.
  3587     ^ modifiedInstVars includes:instVarName.
  3588     ^ modifiedInstVars includes:instVarName.
  3588 
  3589 
  3589     "Created: / 23-07-2012 / 11:16:36 / cg"
  3590     "Created: / 23-07-2012 / 11:16:36 / cg"
  3590 ! !
  3591 ! !
  3591 
  3592 
       
  3593 
  3592 !Method methodsFor:'source management'!
  3594 !Method methodsFor:'source management'!
  3593 
  3595 
  3594 revisionInfo
  3596 revisionInfo
  3595     "cg: is this correct for extensions? (shouldn't this be the revisionInfo from the extensions container)"
  3597     "cg: is this correct for extensions? (shouldn't this be the revisionInfo from the extensions container)"
  3596 
  3598 
  3834 ! !
  3836 ! !
  3835 
  3837 
  3836 !Method class methodsFor:'documentation'!
  3838 !Method class methodsFor:'documentation'!
  3837 
  3839 
  3838 version
  3840 version
  3839     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.437 2014-07-10 12:18:39 cg Exp $'
  3841     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.438 2014-09-23 19:04:15 cg Exp $'
  3840 !
  3842 !
  3841 
  3843 
  3842 version_CVS
  3844 version_CVS
  3843     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.437 2014-07-10 12:18:39 cg Exp $'
  3845     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.438 2014-09-23 19:04:15 cg Exp $'
  3844 !
  3846 !
  3845 
  3847 
  3846 version_SVN
  3848 version_SVN
  3847     ^ '$ Id: Method.st 10648 2011-06-23 15:55:10Z vranyj1 $'
  3849     ^ '$ Id: Method.st 10648 2011-06-23 15:55:10Z vranyj1 $'
  3848 ! !
  3850 ! !