Changeset 152 for trunk/thune/internal.h

Show
Ignore:
Timestamp:
05/14/06 02:10:45 (3 years ago)
Author:
krobillard
Message:

Thune -
'do now dispatches function!, call!, & code!
'as handles all word types.
'index? returns atom if TOS is a word.
Started implementing 'foreach.
true & false are now infused.
Fixed unitialized word.wordBlk and leak in ur_tokenize().

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/internal.h

    r109 r152  
    111111#define CC_EVAL_RUNNING     2 
    112112#define CC_ITER             3 
    113 #define CC_CATCH            4 
    114 #define CC_END              5 
     113#define CC_FOREACH          4 
     114#define CC_CATCH            5 
     115#define CC_END              6 
    115116 
    116117//#define CC_LEN_FUNC         1  // + argc 
    117118#define CC_LEN_EVAL         1 
    118119#define CC_LEN_ITER         2 
     120#define CC_LEN_FOREACH      2 
    119121#define CC_LEN_CATCH        3 
    120122#define CC_LEN_END          1 
     
    176178#define OP_VERIFY_3         28 
    177179#define OP_DO_FUNC          29 
     180#define OP_FOREACH          30 
    178181//#define OP_END              255 
    179182