Committed pending modification.

git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1706 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
eiffel-org
2016-12-19 16:08:34 +00:00
parent 734fb0b6a9
commit 088e00173e
7 changed files with 161 additions and 48 deletions

View File

@@ -58,12 +58,12 @@ In the root feature:
-- Other local variables if necessary.
do
create ts.make
ps.disable_tracing
ts.disable_tracing
-- Program execution continues.
...
-- Restore tracing before exiting for proper cleanup.
ps.enable_tracing
ts.enable_tracing
end
</code>
@@ -76,10 +76,10 @@ Then, in a feature in which tracing is desired:
-- Other local variables if necessary.
do
create ts.make
ps.enable_tracing -- Enable trace
ts.enable_tracing -- Enable trace
-- Section needing trace.
...
ps.disable_tracing -- Disable trace
ts.disable_tracing -- Disable trace
end
</code>