Rebol Programming/trace

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
TRACE mode /net /function 

DESCRIPTION:

[edit | edit source]

Enables and disables evaluation tracing.

TRACE is a native value.

ARGUMENTS

[edit | edit source]
  • mode -- (Type: logic)

REFINEMENTS

[edit | edit source]
  • /net -- Enable/disable network tracing.
  • /function -- Enable/disable function call tracing.

SOURCE CODE

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