From 4bb57a55a0c828dfce12e80651bcc37711335e12 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Tue, 8 May 2018 10:25:00 -0700 Subject: 4239 --- html/003trace.cc.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'html/003trace.cc.html') diff --git a/html/003trace.cc.html b/html/003trace.cc.html index 65251f0a..caf54354 100644 --- a/html/003trace.cc.html +++ b/html/003trace.cc.html @@ -3,7 +3,7 @@ Mu - 003trace.cc - + @@ -15,14 +15,14 @@ body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color a { color:#eeeeee; text-decoration: none; } a:hover { text-decoration: underline; } * { font-size: 12pt; font-size: 1em; } -.PreProc { color: #800080; } -.LineNr { color: #444444; } .Constant { color: #00a0a0; } +.Comment { color: #9090ff; } +.Comment a { color:#0000ee; text-decoration:underline; } .Delimiter { color: #800080; } +.LineNr { color: #444444; } .Identifier { color: #c0a020; } .Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; } -.Comment { color: #9090ff; } -.Comment a { color:#0000ee; text-decoration:underline; } +.PreProc { color: #800080; } .cSpecial { color: #008000; } --> @@ -105,7 +105,7 @@ if ('onhashchange' in window) { 45 //: 46 //: Between layers and domain-driven testing, programming starts to look like a 47 //: fundamentally different activity. Instead of a) superficial, b) local rules - 48 //: on c) code [like say http://blog.bbv.ch/2013/06/05/clean-code-cheat-sheet], + 48 //: on c) code [like say http://blog.bbv.ch/2013/06/05/clean-code-cheat-sheet 49 //: we allow programmers to engage with the a) deep, b) global structure of the 50 //: c) domain. If you can systematically track discontinuities in the domain, 51 //: you don't care if the code used gotos as long as it passed the tests. If @@ -224,7 +224,7 @@ if ('onhashchange' in window) { 164 #define CLEAR_TRACE delete Trace_stream, Trace_stream = new trace_stream; 165 166 // Top-level helper. IMPORTANT: can't nest -167 #define trace(...) !Trace_stream ? cerr /*print nothing*/ : Trace_stream->stream(__VA_ARGS__) +167 #define trace(...) !Trace_stream ? cerr /*print nothing*/ : Trace_stream->stream(__VA_ARGS__) 168 169 // Just for debugging; 'git log' should never show any calls to 'dbg'. 170 #define dbg trace(0, "a") @@ -262,7 +262,7 @@ if ('onhashchange' in window) { 202 :(before "End Types") 203 struct end {}; 204 :(code) -205 ostream& operator<<(ostream& os, unused end) { +205 ostream& operator<<(ostream& os, vestigial end) { 206 if (Trace_stream) Trace_stream->newline(); 207 return os; 208 } @@ -289,7 +289,7 @@ if ('onhashchange' in window) { 229 START_TRACING_UNTIL_END_OF_SCOPE 230 231 :(before "End Includes") -232 #define CHECK_TRACE_CONTENTS(...) check_trace_contents(__FUNCTION__, __FILE__, __LINE__, __VA_ARGS__) +232 #define CHECK_TRACE_CONTENTS(...) check_trace_contents(__FUNCTION__, __FILE__, __LINE__, __VA_ARGS__) 233 234 #define CHECK_TRACE_CONTAINS_ERRORS() CHECK(trace_contains_errors()) 235 #define CHECK_TRACE_DOESNT_CONTAIN_ERRORS() \ @@ -309,7 +309,7 @@ if ('onhashchange' in window) { 249 return; /* Currently we stop at the very first failure. */ \ 250 } 251 -252 #define CHECK_TRACE_DOESNT_CONTAIN(...) CHECK(trace_doesnt_contain(__VA_ARGS__)) +252 #define CHECK_TRACE_DOESNT_CONTAIN(...) CHECK(trace_doesnt_contain(__VA_ARGS__)) 253 254 :(code) 255 bool check_trace_contents(string FUNCTION, string FILE, int LINE, string expected) { -- cgit 1.4.1-2-gfad0