Skip to content

Commit

Permalink
adding comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Dec 27, 2024
1 parent 82a4857 commit 1491da3
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions public/go.html
Original file line number Diff line number Diff line change
Expand Up @@ -13691,6 +13691,17 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
yz.debug.steps.push(latestLogId.id)
},
endDebug: function ( ) {
//----------------------------------------------------------------------------------/
//
// /-------------------------------------/
// / FUNCTION endDebug /
// /-------------------------------------/
//
//----------------------------------------------------------------------------/
// This is not currently used. It is supposed to set all the debug vars
// to null though, like when we stop debugging
//-----------------------------------------------------------/

if ((typeof $DEBUGUI == 'undefined') || (!$DEBUGUI)) {
return
}
Expand All @@ -13701,11 +13712,11 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
yz.debug.steps = []
},

linesOfSourceFile: {},
currentDebugId: null,
currentSqlDebugId: null,
linesOfSourceFile: {}, // the lines of code in go.html and other source files = [line 1, line 2, etc...]
currentDebugId: null, // table "ui_table_debug_trace_log", field "fk_debug_id" = eg: "hjgfsjfgsdhjgfhjfgdjhsfgjfh"
debugTracerId: null, // a UUID which shows which debug trace event we are in ("currentDebugId" is not unique)
currentSqlDebugId: null, // table "ui_table_debug_sql_log", field ""
currentSqlLogId: null,
debugTracerId: null,
debugTick: 1,
start: null,
steps: []
Expand Down

0 comments on commit 1491da3

Please sign in to comment.