Page MenuHomePhabricator

D16433.id39523.diff
No OneTemporary

D16433.id39523.diff

diff --git a/src/applications/celerity/CelerityResourceMapGenerator.php b/src/applications/celerity/CelerityResourceMapGenerator.php
--- a/src/applications/celerity/CelerityResourceMapGenerator.php
+++ b/src/applications/celerity/CelerityResourceMapGenerator.php
@@ -232,11 +232,8 @@
list($description, $metadata) = $parser->parse($matches[0]);
- $provides = preg_split('/\s+/', trim(idx($metadata, 'provides')));
- $requires = preg_split('/\s+/', trim(idx($metadata, 'requires')));
- $provides = array_filter($provides);
- $requires = array_filter($requires);
-
+ $provides = $this->parseResourceSymbolList(idx($metadata, 'provides'));
+ $requires = $this->parseResourceSymbolList(idx($metadata, 'requires'));
if (!$provides) {
// Tests and documentation-only JS is permitted to @provide no targets.
return array(null, null);
@@ -364,4 +361,37 @@
return $result;
}
+ private function parseResourceSymbolList($list) {
+ if (!$list) {
+ return array();
+ }
+
+ // This is valid:
+ //
+ // @requires x y
+ //
+ // But so is this:
+ //
+ // @requires x
+ // @requires y
+ //
+ // Accept either form and produce a list of symbols.
+
+ $list = (array)$list;
+
+ // We can get `true` values if there was a bare `@requires` in the input.
+ foreach ($list as $key => $item) {
+ if ($item === true) {
+ unset($list[$key]);
+ }
+ }
+
+ $list = implode(' ', $list);
+ $list = trim($list);
+ $list = preg_split('/\s+/', $list);
+ $list = array_filter($list);
+
+ return $list;
+ }
+
}

File Metadata

Mime Type
text/plain
Expires
Wed, Apr 2, 11:17 PM (3 d, 18 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7701426
Default Alt Text
D16433.id39523.diff (1 KB)

Event Timeline