Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Jan 9, 2025
1 parent a8db20c commit eb1181c
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions public/go.html
Original file line number Diff line number Diff line change
Expand Up @@ -13512,13 +13512,17 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
// This is called after we have started a debug session and we want to debug
// a function call. This should be on the line after the function definition:
//
// function someFUnction( ) {
// function someFunction( ) {
// yz.debug.debugFn(arguments)
// ... rest of code
//
// Do not forget to close off the call with "endOfDebugSection( ... )"
// just before the function returns to the caller, with any return
// parameters included too
// Do not forget to close off the call with "endOfDebugSection( )" just
// before the function returns to the caller. If there are any return
// parameters then use the following to end the function:
//
// ... code
// return endOfDebugSection( returnParameters )
// }
//
//________
// PARAMS \______________________________________________________________/
Expand All @@ -13530,14 +13534,15 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
//-----------------------------------------------------------/

//
// make sure we are in debug mode
// make sure that we are in debug mode
//
if ((typeof $DEBUGUI == 'undefined') || (!$DEBUGUI)) {
return
}

//
// get the debug token, like "hjgdfsgjhfsgjsgdjhsf" from the args passed in
// get the debug token, like "hjgdffdsfdsfdsgjhfsgjsgdjhsf" from the args passed in
// as "argsPassedIn"
//
let callerDebugToken = argsPassedIn[0]

Expand Down

0 comments on commit eb1181c

Please sign in to comment.