[gforth] / gforth / mini-oof.fs  

gforth: gforth/mini-oof.fs

Diff for /gforth/mini-oof.fs between version 1.1 and 1.2

version 1.1, Sun Apr 12 21:49:13 1998 UTC version 1.2, Sun Jul 5 20:49:59 1998 UTC
Line 1 
Line 1 
 1 cells Constant cell  
 : method ( m v -- m' v ) Create  over , swap cell+ swap  : method ( m v -- m' v ) Create  over , swap cell+ swap
   DOES> ( ... o -- ... ) @ over @ + @ execute ;    DOES> ( ... o -- ... ) @ over @ + @ execute ;
 : var ( m v size -- m v' ) Create  over , +  : var ( m v size -- m v' ) Create  over , +
   DOES> ( o -- addr ) @ + ;    DOES> ( o -- addr ) @ + ;
 : class ( class -- class methods vars ) dup 2@ ;  : class ( class -- class methods vars ) dup 2@ ;
 : end-class  ( class methods vars -- )  : end-class  ( class methods vars -- )
   Create  here >r , dup , 2 cells ?DO ['] noop , cell +LOOP    Create  here >r , dup , 2 cells ?DO ['] noop , 1 cells +LOOP
   cell+ dup cell+ swap @ 2 - cells r> 2 cells + swap move ;    cell+ dup cell+ swap @ 2 - cells r> 2 cells + swap move ;
 : defines ( xt class -- ) ' >body @ + ! ;  : defines ( xt class "name" -- ) ' >body @ + ! ;
 : new ( class -- o )  here over @ allot swap over ! ;  : new ( class -- o )  here over @ allot swap over ! ;
 : :: ( class "name" -- ) ' >body @ + @ compile, ;  : :: ( class "name" -- ) ' >body @ + @ compile, ;
 Create object  1 cells , 2 cells ,  Create object  1 cells , 2 cells ,


Generate output suitable for use with a patch program
Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help