8000 trace · brombres/Rogue Wiki · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Abe Pralle edited this page Sep 7, 2022 · 3 revisions

Syntax

trace
trace expression [expression ...]
@trace expression [...]

Description

Variation Description
trace Prints the name of the current method, filename, and source line.
trace expression ... Prints the source position, the source code for the expression, and the value of the expression.
@trace expression ... Prints expressions and expression values but omits the source position.

Example

# In Test.rogue
local (x,y) = (3,4)
trace x y   # [on_launch() Test.rogue:3] x:3 y:4
@trace x y  # x:3 y:4
Clone this wiki locally
0