Cobra Programming Language
Downloads
Documentation
How To
Samples
Discussion
Wiki
Contact
Wiki
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
← Previous Change
Wiki History
Next Change
→
Login
Preferences
Help/Guide
About Trac
Changes between
Initial Version
and
Version 1
of
CtTrace
View differences
inline
side by side
Show
lines around each change
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
05/04/10 14:32:15 (
15 years
ago)
Author:
hopscc
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
CtTrace
v1
v1
1
= Compile Time Trace =
2
3
Emit a trace message for this line at compile time.
4
5
== Grammar ==
6
7
{{{
8
ct_trace <expression>
9
}}}
10
11
== Examples ==
12
13
{{{
14
class Foo
15
16
def doFoo
17
ct_trace 'Compiling class Foo.doFoo'
18
...
19
}}}