Method.st
changeset 3 24d81bf47225
parent 2 6526dde5f3ac
child 5 67342904af11
equal deleted inserted replaced
2:6526dde5f3ac 3:24d81bf47225
    36 The flags field defines things like the number of method-locals,
    36 The flags field defines things like the number of method-locals,
    37 method arguments and stack size need (for interpreted methods).
    37 method arguments and stack size need (for interpreted methods).
    38 
    38 
    39 WARNING: layout known by compiler and runtime system - dont change
    39 WARNING: layout known by compiler and runtime system - dont change
    40 
    40 
    41 %W% %E%
    41 $Header: /cvs/stx/stx/libbasic/Method.st,v 1.3 1993-10-13 00:16:33 claus Exp $
    42 written spring 89 by claus
    42 written spring 89 by claus
    43 '!
    43 '!
       
    44 
       
    45 !Method class methodsFor:'queries'!
       
    46 
       
    47 isBuiltInClass
       
    48     "this class is known by the run-time-system"
       
    49 
       
    50     ^ self == Method
       
    51 ! !
    44 
    52 
    45 !Method methodsFor:'accessing'!
    53 !Method methodsFor:'accessing'!
    46 
    54 
    47 instVarAt:index
    55 instVarAt:index
    48     "redefined to catch access to code-field - it is a non-object"
    56     "redefined to catch access to code-field - it is a non-object"