We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
xx_require_once_statement
1 parent 0852a00 commit 464c692Copy full SHA for 464c692
parser/zephir.lemon
@@ -986,6 +986,10 @@ xx_statement(R) ::= xx_require_statement(S) . {
986
R = S;
987
}
988
989
+xx_statement(R) ::= xx_require_once_statement(S) . {
990
+ R = S;
991
+}
992
+
993
xx_statement(R) ::= xx_fetch_statement(S) . {
994
995
@@ -1534,7 +1538,7 @@ xx_require_statement(R) ::= REQUIRE xx_common_expr(E) DOTCOMMA . {
1534
1538
1535
1539
1536
1540
/* require_once statement */
1537
-xx_require_statement(R) ::= REQUIRE_ONCE xx_common_expr(E) DOTCOMMA . {
1541
+xx_require_once_statement(R) ::= REQUIRE_ONCE xx_common_expr(E) DOTCOMMA . {
1542
xx_ret_require_once_statement(&R, &E, status->scanner_state);
1543
1544
0 commit comments