Rebol Programming/trace

USAGE:

edit
TRACE mode /net /function 

DESCRIPTION:

edit

Enables and disables evaluation tracing.

TRACE is a native value.

ARGUMENTS

edit
  • mode -- (Type: logic)

REFINEMENTS

edit
  • /net -- Enable/disable network tracing.
  • /function -- Enable/disable function call tracing.

SOURCE CODE

edit
trace: native[
    "Enables and disables evaluation tracing." 
    mode [logic!] 
    /net "Enable/disable network tracing." 
    /function "Enable/disable function call tracing."
]