Lexidor Digital
Lexidor Digital
https://github.com/facebook/hhvm/commit/f1e5724fd9062aaa22305af06fe825fe69238c1a#diff-c50b7cac126b2aee3ca59cdbe06d56de
@Wilfred you recently commented the following: https://github.com/facebook/hhvm/commit/7c6cc5f59d3a66731c9d49c90d76400fb72de28d#diff-99b49fa637b3602c3b1c6f7c88154a4de724ca51a8a86ff018c8b53f5f7b0c59R509 > $$ is not required on the RHS of pipe expressions, but it's pretty pointless to use pipes without $$. This used to...
https://docs.hhvm.com/hack/expressions-and-operators/pipe Note for future. If it is later decided to keep allowing `0 |> 0` the docs need to be updated.
gdb hhvm _wait_ r library/autoload.php _wait_ thread apply all bt _wait_ `hold enter to continue` ``` GNU gdb (Ubuntu 8.1-0ubuntu3.2) 8.1.0.20180409-git Copyright (C) 2018 Free Software Foundation, Inc. License GPLv3+:...
Update, newer versions of Hack interpret `Anno` as a classname. (Like the angle brackets are part of the name.) ```HACK class Anno implements \HH\FunctionAttribute {} > function func(): void {}...
Hi :wave:, these notices are not specific to your setup and you have followed the guide correctly. These notices have been around for a really long time. They occur in...
I am looking into `__SystemLib` to fix an issue with `__SystemLib\BaseException::$previous`. (This trait is used in `\Error` and `\Exception`.) It is typed as `?\Exception` instead of `?\Throwable`. > Fixing a...
Not quite resolved. 4.162.0 fixes the property, but the third argument of `\Exception` is still `?\Exception`. The property change was the one with the highest friction, since properties are invariant....
See https://github.com/facebook/hhvm/pull/9104
This issue is resolved at runtime, but not in the hhi. https://github.com/facebook/hhvm/blob/a27b1661b3cdcb38eb5f1ee1bbe53f55f8f368a7/hphp/hack/hhi/exceptions.hhi#L90 This should be Throwable instead.