Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15463425
D16433.id39523.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D16433.id39523.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D16433: Update Celerity map parser for new docblock code
Attached
Detach File
Event Timeline
Log In to Comment