Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Core 2.6 - Last minute requests - take your chance!

From: rotenca:telvia:it at: 5-Apr-2002 14:08

25) error/ near : a pointer to the block where the error! was generated the stack of calls in error/where or in a new field 26) a new native function to collect the history of function calls, like a block of pointers to code blocks where the call was fired (stack) 27) dream: a new native funtion to collect the history of contexts like pointers to context blocks/objects 28) a /self refinement for function (like the /local) which generates a pointer to itself f: func [a /local b c /self myself][ ; here myself is a pointer to the function] to put the self refinement after /local should be save: f: func [a /self myself /local b c ][ ; here myself is a user arg for the user refinement /self] this should generate an error: f: func [a /self /local b c /self myself][ ] 29) a /self refinement for use which generates a pointer to the use block use [a /self myself] [ ; here myself is a pointer to the use block] (i can't stop myself!!!!) --- Ciao Romano