Changes between Version 10 and Version 11 of macros


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

--

Legend:

Unmodified
Added
Removed
Modified
  • macros

    v10 v11  
    5050    Same as ''matchMethodPragma:'' but for classes and their pragmas.
    5151
     52 `classAdded:` ''aClass''::
     53 `classCompiled:` ''aClass'' `from:` ''anOldClassOrNil''::
     54 `classModified:` ''aClass'' `from:` ''anOldClass''::
     55 `classRemoved:` ''aClass''::
     56    Those are called if a class event occurred.
     57
     58 `methodAdded:` ''aMethod'' `in:` ''aClass''::
     59 `methodCompiled:` ''aCompiledMethod'' `in:` ''aClass'' `from:` ''anOldCompiledMethodOrNil''::
     60 `methodModified:` ''aMethod'' `in:` ''aClass'' `from:` ''anOldMethod''::
     61 `methodRemoved:` ''aMethod'' `in:` ''aClass''::
     62    Those are called if a method event occurred.
     63
    5264= How to Extend =
    5365