[Gambas-user] gbx -g

Laurent Carlier lordheavy at ...512...
Thu Nov 16 21:24:33 CET 2006


Le Jeudi 16 Novembre 2006 21:12, Charlie Reinl a écrit :
> Salut,
>
> are there somewhere a list of the gbx commands when gbx is started with
> -g ?
> I found out go and quit, whats else ?
>
> Amicalment
> Charlie
>

Here ?
/main/lib/debug/debug.c

--8<--
PUBLIC void DEBUG_main(boolean error)
{
  static DEBUG_TYPE last_command = TC_NONE;

  static DEBUG_COMMAND Command[] =
  {
    { "q", TC_NONE, command_quit, FALSE },
    { "n", TC_NEXT, command_next, FALSE },
    { "s", TC_STEP, command_step, FALSE },
    { "f", TC_FROM, command_from, FALSE },
    { "g", TC_GO, command_go, FALSE },
    { "+", TC_NONE, command_set_breakpoint, TRUE },
    { "-", TC_NONE, command_unset_breakpoint, TRUE },
    //{ "w", TC_NONE, command_where, TRUE },
    //{ "l", TC_NONE, command_local, TRUE },
    { "&", TC_NONE, command_symbol, TRUE },
    { "?", TC_NONE, command_eval, TRUE },
    { "!", TC_NONE, command_eval, TRUE },
    { "#", TC_NONE, command_eval, TRUE },
    //{ "e", TC_NONE, command_error, TRUE },
    { "@", TC_NONE, command_frame, TRUE },
    
    { NULL }
  };

--8<--

Regards,





More information about the User mailing list