mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
+compile
This commit is contained in:
parent
6df19b3aa2
commit
b978c20f63
5 changed files with 92 additions and 18 deletions
|
@ -32,6 +32,7 @@
|
|||
* Helper Forward Declarations
|
||||
*/
|
||||
PHPDBG_HELP(exec);
|
||||
PHPDBG_HELP(compile);
|
||||
PHPDBG_HELP(print);
|
||||
PHPDBG_HELP(brake);
|
||||
|
||||
|
@ -39,9 +40,10 @@ PHPDBG_HELP(brake);
|
|||
* Commands
|
||||
*/
|
||||
static const phpdbg_command_t phpdbg_help_commands[] = {
|
||||
PHPDBG_HELP_D(exec, "the execution context should be a valid phpdbg path"),
|
||||
PHPDBG_HELP_D(print, "printing allows inspection of the execution environment"),
|
||||
PHPDBG_HELP_D(brake, "brake points allow execution interruption"),
|
||||
PHPDBG_HELP_D(exec, "the execution context should be a valid phpdbg path"),
|
||||
PHPDBG_HELP_D(compile, "pre-compilation allows inspection of code before execution"),
|
||||
PHPDBG_HELP_D(print, "printing allows inspection of the execution environment"),
|
||||
PHPDBG_HELP_D(brake, "brake points allow execution interruption"),
|
||||
{NULL, 0, 0}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue