Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15465701
D12284.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
723 B
Referenced Files
None
Subscribers
None
D12284.id.diff
View Options
diff --git a/src/parser/xhpast/api/XHPASTTree.php b/src/parser/xhpast/api/XHPASTTree.php
--- a/src/parser/xhpast/api/XHPASTTree.php
+++ b/src/parser/xhpast/api/XHPASTTree.php
@@ -62,9 +62,13 @@
throw new Exception("XHPAST failed to parse file data {$err}: {$stderr}");
}
- $data = json_decode($stdout, true);
- if (!is_array($data)) {
- throw new Exception('XHPAST: failed to decode tree.');
+ $data = null;
+ try {
+ $data = phutil_json_decode($stdout);
+ } catch (PhutilJSONParserException $ex) {
+ throw new PhutilProxyException(
+ pht('XHPAST: failed to decode tree.'),
+ $ex);
}
return new XHPASTTree($data['tree'], $data['stream'], $php_source);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 3, 10:13 PM (1 d, 6 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704359
Default Alt Text
D12284.id.diff (723 B)
Attached To
Mode
D12284: Utilize `phutil_json_decode`
Attached
Detach File
Event Timeline
Log In to Comment