diff options
author | Nikita Popov <nikic@php.net> | 2013-10-19 23:22:20 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2013-10-19 23:22:20 +0200 |
commit | 64caedd927164228c9de2bab97e62a717507bd84 (patch) | |
tree | fbdc26e18d1c464c504828b6ac756b9aa04e8e44 /Zend/zend_language_parser.y | |
parent | e1f9993ba8e46ced3a5fce2543eec043175b2117 (diff) | |
download | php-git-64caedd927164228c9de2bab97e62a717507bd84.tar.gz |
Use zend_error_noreturn for all E_COMPILE_ERRORs
Diffstat (limited to 'Zend/zend_language_parser.y')
-rw-r--r-- | Zend/zend_language_parser.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_language_parser.y b/Zend/zend_language_parser.y index d46149957a..f76b77b555 100644 --- a/Zend/zend_language_parser.y +++ b/Zend/zend_language_parser.y @@ -271,7 +271,7 @@ inner_statement: statement | function_declaration_statement | class_declaration_statement - | T_HALT_COMPILER '(' ')' ';' { zend_error(E_COMPILE_ERROR, "__HALT_COMPILER() can only be used from the outermost scope"); } + | T_HALT_COMPILER '(' ')' ';' { zend_error_noreturn(E_COMPILE_ERROR, "__HALT_COMPILER() can only be used from the outermost scope"); } ; @@ -1202,7 +1202,7 @@ isset_variables: isset_variable: variable { zend_do_isset_or_isempty(ZEND_ISSET, &$$, &$1 TSRMLS_CC); } - | expr_without_variable { zend_error(E_COMPILE_ERROR, "Cannot use isset() on the result of an expression (you can use \"null !== expression\" instead)"); } + | expr_without_variable { zend_error_noreturn(E_COMPILE_ERROR, "Cannot use isset() on the result of an expression (you can use \"null !== expression\" instead)"); } ; class_constant: |