Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15468561
D12271.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
812 B
Referenced Files
None
Subscribers
None
D12271.id.diff
View Options
diff --git a/src/lint/linter/ArcanistBaseXHPASTLinter.php b/src/lint/linter/ArcanistBaseXHPASTLinter.php
--- a/src/lint/linter/ArcanistBaseXHPASTLinter.php
+++ b/src/lint/linter/ArcanistBaseXHPASTLinter.php
@@ -157,7 +157,6 @@
* @task sharing
*/
final protected function getXHPASTTreeForPath($path) {
-
// If we aren't the linter responsible for actually building the parse
// trees, go get the tree from that linter.
if ($this->getXHPASTLinter() !== $this) {
@@ -165,7 +164,12 @@
}
if (!array_key_exists($path, $this->trees)) {
+ if (!array_key_exists($path, $this->futures)) {
+ return;
+ }
+
$this->trees[$path] = null;
+
try {
$this->trees[$path] = XHPASTTree::newFromDataAndResolvedExecFuture(
$this->getData($path),
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 5, 2:17 AM (1 d, 11 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7640974
Default Alt Text
D12271.id.diff (812 B)
Attached To
Mode
D12271: Allow getXHPASTTreeForPath to return the tree for an arbitrary path
Attached
Detach File
Event Timeline
Log In to Comment