Changes between Version 12 and Version 13 of macros


Ignore:
Timestamp:
02/15/2011 03:06:01 PM (13 years ago)
Author:
michael.gruenewald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • macros

    v12 v13  
    5252Depending on the use-case and the decision you made above, implement one or more of the following methods which are called when an event in a relevant entity occurs:
    5353
     54 `methodAdded:` ''aMethod'' `in:` ''aClass''::
     55 `methodCompiled:` ''aCompiledMethod'' `in:` ''aClass'' `from:` ''anOldCompiledMethodOrNil''::
     56 `methodModified:` ''aMethod'' `in:` ''aClass'' `from:` ''anOldMethod''::
     57 `methodRemoved:` ''aMethod'' `in:` ''aClass''::
     58    Those are called if a method event occurred.
     59
    5460 `classAdded:` ''aClass''::
    5561 `classCompiled:` ''aClass'' `from:` ''anOldClassOrNil''::
     
    5763 `classRemoved:` ''aClass''::
    5864    Those are called if a class event occurred.
    59 
    60  `methodAdded:` ''aMethod'' `in:` ''aClass''::
    61  `methodCompiled:` ''aCompiledMethod'' `in:` ''aClass'' `from:` ''anOldCompiledMethodOrNil''::
    62  `methodModified:` ''aMethod'' `in:` ''aClass'' `from:` ''anOldMethod''::
    63  `methodRemoved:` ''aMethod'' `in:` ''aClass''::
    64     Those are called if a method event occurred.
    6565
    6666