mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
Make sure 'id' and 'idx' are not marked as builtin functions?
Summary: This is sort of a guess. In D357, arc has gone crazy and removed a bunch of 'utils' dependencies for gc3. I think this is because his HPHP/i has them marked as builtins. However, I don't have an HPHP/i build (and probably don't have the fortitude to build it outside of a Facebook environment, I spent about two hours on it at one point and got maybe 25% of the way through the build process before running into things I didn't know how to resolve) so I'm not sure this is the issue. No one else's diffs have exhibited this problem eitehr, so I'm not confident this is actually the problem or solution. gc3, can you apply this locally to a copy of arcanist and then run 'arc lint' (or 'arc lint --apply-patches') on your commit and see if it restores all the libphutil/utils requirements? Test Plan: unable, see summary Added 'array_keys' to this blacklist and verified the technical behavior of the patch is correct by var_dump()'ing builtins. Reviewed By: gc3 Reviewers: gc3, tuomaspelkonen, jungejason, aran CC: aran, gc3, epriestley Differential Revision: 361
This commit is contained in:
parent
f87dd377df
commit
857f08ae47
1 changed files with 16 additions and 9 deletions
|
@ -26,15 +26,22 @@ $builtin = array(
|
|||
'class' => array_fill_keys($builtin_classes, true) + array(
|
||||
'PhutilBootloader' => true,
|
||||
),
|
||||
'function' => array_fill_keys($builtin_functions, true) + array(
|
||||
'empty' => true,
|
||||
'isset' => true,
|
||||
'echo' => true,
|
||||
'print' => true,
|
||||
'exit' => true,
|
||||
'die' => true,
|
||||
'phutil_load_library' => true,
|
||||
),
|
||||
'function' => array_filter(
|
||||
array(
|
||||
'empty' => true,
|
||||
'isset' => true,
|
||||
'echo' => true,
|
||||
'print' => true,
|
||||
'exit' => true,
|
||||
'die' => true,
|
||||
'phutil_load_library' => true,
|
||||
|
||||
// HPHP/i defines these functions as 'internal', but they are NOT
|
||||
// builtins and do not exist in vanilla PHP. Make sure we don't mark them
|
||||
// as builtin since we need to add dependencies for them.
|
||||
'idx' => false,
|
||||
'id' => false,
|
||||
) + array_fill_keys($builtin_functions, true)),
|
||||
'interface' => array_fill_keys($builtin_interfaces, true),
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue