Next: Behavior-parsing class declarations, Previous: Behavior-instance variables, Up: Behavior [Index]
Add the given compiledMethod to the method dictionary, giving it the passed selector. Answer compiledMethod
Compile method source. If there are parsing errors, answer nil. Else, return a CompiledMethod result of compilation
Compile method source. If there are parsing errors, invoke exception block, ’block’ passing file name, line number and error. Return a CompiledMethod result of compilation
Compile method source. If there are parsing errors, send #error: to the requestor object, else return a CompiledMethod result of compilation
Recompile all selectors in the receiver. Ignore errors.
Recompile all selectors in the receiver. Notify aNotifier by sending #error: messages if something goes wrong.
Recompile all selector of all subclasses. Notify aNotifier by sending #error: messages if something goes wrong.
Recompile all selector of all subclasses. Notify aNotifier by sending #error: messages if something goes wrong.
Create a method accessing the variable ‘what’.
Create a method accessing the variable ‘what’, with a default value of ‘value’, using lazy initialization
Create a method which sets the variable ‘what’.
Decompile the bytecodes for the given selector.
Please lookup the part on the C interface in the manual. This method is deprecated, you should use the asyncCCall:args: attribute.
Please lookup the part on the C interface in the manual. This method is deprecated, you should use the cCall:returning:args: attribute.
Open Emacs to edit the method with the passed selector, then compile it
Answer the receiver’s method dictionary. Don’t modify the method dictionary unless you exactly know what you’re doing
Set the receiver’s method dictionary to aDictionary
Recompile the given selector, answer nil if something goes wrong or the new CompiledMethod if everything’s ok.
Recompile the given selector. If there are parsing errors, send #error: to the aNotifier object, else return a CompiledMethod result of compilation
Remove the given selector from the method dictionary, answer the CompiledMethod attached to that selector
Remove the given selector from the method dictionary, answer the CompiledMethod attached to that selector. If the selector cannot be found, answer the result of evaluating aBlock.
Evaluate aBlock, passing for each evaluation a selector that’s defined in the receiver and the corresponding method.
Next: Behavior-parsing class declarations, Previous: Behavior-instance variables, Up: Behavior [Index]