diff options
-rw-r--r-- | phpdbg_parser.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpdbg_parser.y b/phpdbg_parser.y index be37781cd1..4a84504e2e 100644 --- a/phpdbg_parser.y +++ b/phpdbg_parser.y @@ -147,15 +147,15 @@ parameter $$.str = $2.str; $$.len = $2.len; } + | T_RUN { + $$.type = RUN_PARAM; + $$.len = 0; + } | T_RUN T_INPUT { $$.type = RUN_PARAM; $$.str = $2.str; $$.len = $2.len; } - | T_RUN { - $$.type = RUN_PARAM; - $$.len = 0; - } | T_OPCODE { $$ = $1; } | T_ADDR { $$ = $1; } | T_LITERAL { $$ = $1; } |