declare statement is not scoped when using curly braces
まだ誰も着手していません。
- 主要言語
- C
- スター
- 40.4k
- フォーク
- 8.2k
- 平均マージ
- 2日 13時間
- マージ済み PR(30日)
- 96
説明
Description
When writing tests for phpcs sniff using some useful helpers regarding declare statements, I came up with an unusual behavior of the declare statements, when braces are used.
I was testing out a code that looked like this:
<?php
declare(strict_types=1)
echo 'hi!';
{
// Code.
}
that threw a fatal error because you cannot use curly braces with strict_types directive or alternative control structure syntax (declare: ... enddeclare;)
So I tried to see what will happen if I use a directive that allows the use of curly braces, like encoding. So I tried:
<?php
declare(encoding='ISO-8859-15')
echo 'aäaß' . "\n";
{
echo 'aäaß' . "\n";
}
And I got out:
aÀaÃ
aÀaÃ
I thought I'd get a parse error like when you omit the : when using if with endif; statement. Although, when testing the if statement with the curly braces, like in the example above, I can also see the echoed value before the condition, so I guess that's kinda expected.
What was a buggy behavior was this:
<?php
declare(encoding='ISO-8859-15') {
echo 'aäaß' . "\n";
}
echo 'aäaß' . "\n";
I expected to see
aÀaÃ
aäaß
But I got (again)
aÀaÃ
aÀaÃ
So it seems that the declare statement, no matter if we are using curly braces, or alternative control structure syntax, will be applied throughout the file, instead of being scoped.
PHP Version
PHP 7.4.26
Operating System
Ubuntu 20.04 (on WSL)
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
Issue にはソースファイルもテストのエントリポイントも記載されていません。まず declare(encoding=...) と波括弧を含む PHP 7.4.26 の例を再現し、その後 PHP インタープリターでの declare の処理を追跡してください。ディレクティブが波括弧で囲まれた文のスコープになっており、報告された動作が回帰テストでカバーされていれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- php
- 領域
- compilers
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100