[gforth] / gforth / compat / defer.fs  

gforth: gforth/compat/defer.fs

File: [gforth] / gforth / compat / defer.fs (download)
Revision: 1.2, Sun Nov 28 20:20:37 2004 UTC (8 years, 5 months ago) by anton
Branch: MAIN
CVS Tags: v0-7-0, HEAD
Changes since 1.1: +23 -5 lines
implemented deferred words proposal (and adapted documentation accordingly).

\ deferred words and perform

\ This file is in the public domain. NO WARRANTY.

: perform ( ? addr -- ? )
    @ execute ;

: defer ( "name" -- )
    create ['] abort , \ you should not rely on initialization with noop
does> ( ? -- ? )
    perform ;

: defer@ ( xt1 -- xt2 )
  >body @ ;

: defer! ( xt2 xt1 -- )
  >body ! ;

: <is> ( xt "name" -- )
    ' defer! ;

: [is] ( compilation: "name" -- ; run-time: xt -- )
    postpone ['] postpone defer! ; immediate

: is
  state @ if
    postpone [is]
  else
    <is>
  then ; immediate

: action-of
 state @ if
   POSTPONE ['] POSTPONE defer@
 else
   ' defer@
then ; immediate
    


CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help