Method.st
changeset 15579 cc4c6bae6927
parent 15445 707b77342862
child 15614 70bf14a15a59
child 18079 7b5afc0ad3d5
equal deleted inserted replaced
15578:88cefb6e5d94 15579:cc4c6bae6927
   938 
   938 
   939     "Created: / 02-07-2010 / 22:33:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   939     "Created: / 02-07-2010 / 22:33:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   940     "Modified: / 11-07-2010 / 19:38:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   940     "Modified: / 11-07-2010 / 19:38:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   941     "Modified (format): / 18-11-2011 / 14:47:06 / cg"
   941     "Modified (format): / 18-11-2011 / 14:47:06 / cg"
   942 ! !
   942 ! !
       
   943 
   943 
   944 
   944 !Method methodsFor:'accessing-visibility'!
   945 !Method methodsFor:'accessing-visibility'!
   945 
   946 
   946 isIgnored
   947 isIgnored
   947     "return true, if this is an ignored method.
   948     "return true, if this is an ignored method.
  2974         ^ parser perform:accessSelector
  2975         ^ parser perform:accessSelector
  2975     ].
  2976     ].
  2976     ^ valueIfNoSource
  2977     ^ valueIfNoSource
  2977 
  2978 
  2978     "
  2979     "
       
  2980      LastParseTreeCache removeAll.
       
  2981 
  2979      (Method compiledMethodAt:#parse:return:or:)
  2982      (Method compiledMethodAt:#parse:return:or:)
  2980         parse:#'parseMethodSilent:' return:#sentMessages or:#()
  2983         parse:#'parseMethodSilent:' return:#sentMessages or:#()
  2981     "
  2984     "
  2982 
  2985 
  2983     "Modified: / 01-03-2012 / 14:30:50 / cg"
  2986     "Modified: / 01-03-2012 / 14:30:50 / cg"
  2984     "Modified (format): / 27-07-2012 / 18:32:58 / cg"
  2987     "Modified (comment): / 30-07-2013 / 15:53:41 / cg"
  2985 !
  2988 !
  2986 
  2989 
  2987 parseAnnotations
  2990 parseAnnotations
  2988 
  2991 
  2989     "return the methods annotations."
  2992     "return the methods annotations."
  3535     ^ modifiedInstVars includes:instVarName.
  3538     ^ modifiedInstVars includes:instVarName.
  3536 
  3539 
  3537     "Created: / 23-07-2012 / 11:16:36 / cg"
  3540     "Created: / 23-07-2012 / 11:16:36 / cg"
  3538 ! !
  3541 ! !
  3539 
  3542 
       
  3543 
  3540 !Method methodsFor:'source management'!
  3544 !Method methodsFor:'source management'!
  3541 
  3545 
  3542 revisionInfo
  3546 revisionInfo
  3543     "cg: is this correct for extensions? (shouldn't this be the revisionInfo from the extensions container)"
  3547     "cg: is this correct for extensions? (shouldn't this be the revisionInfo from the extensions container)"
  3544 
  3548 
  3782 ! !
  3786 ! !
  3783 
  3787 
  3784 !Method class methodsFor:'documentation'!
  3788 !Method class methodsFor:'documentation'!
  3785 
  3789 
  3786 version
  3790 version
  3787     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.420 2013-06-29 11:28:21 cg Exp $'
  3791     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.421 2013-07-30 13:55:40 cg Exp $'
  3788 !
  3792 !
  3789 
  3793 
  3790 version_CVS
  3794 version_CVS
  3791     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.420 2013-06-29 11:28:21 cg Exp $'
  3795     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.421 2013-07-30 13:55:40 cg Exp $'
  3792 !
  3796 !
  3793 
  3797 
  3794 version_SVN
  3798 version_SVN
  3795     ^ '$ Id: Method.st 10648 2011-06-23 15:55:10Z vranyj1 $'
  3799     ^ '$ Id: Method.st 10648 2011-06-23 15:55:10Z vranyj1 $'
  3796 ! !
  3800 ! !