Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15443514
D19639.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
D19639.diff
View Options
diff --git a/src/parser/ArcanistCommentRemover.php b/src/parser/ArcanistCommentRemover.php
--- a/src/parser/ArcanistCommentRemover.php
+++ b/src/parser/ArcanistCommentRemover.php
@@ -8,21 +8,25 @@
* considered a comment.
*/
public static function removeComments($body) {
- $lines = explode("\n", $body);
+ $body = rtrim($body);
+
+ $lines = phutil_split_lines($body);
$lines = array_reverse($lines);
+
foreach ($lines as $key => $line) {
- if (!strlen($line)) {
- unset($lines[$key]);
- continue;
- }
- if ($line[0] == '#') {
+ if (preg_match('/^#/', $line)) {
unset($lines[$key]);
continue;
}
+
break;
}
+
$lines = array_reverse($lines);
- return implode("\n", $lines)."\n";
+ $lines = implode('', $lines);
+ $lines = rtrim($lines)."\n";
+
+ return $lines;
}
}
diff --git a/src/parser/__tests__/ArcanistCommentRemoverTestCase.php b/src/parser/__tests__/ArcanistCommentRemoverTestCase.php
--- a/src/parser/__tests__/ArcanistCommentRemoverTestCase.php
+++ b/src/parser/__tests__/ArcanistCommentRemoverTestCase.php
@@ -24,6 +24,21 @@
The end.
+EOTEXT;
+
+ $this->assertEqual($expect, ArcanistCommentRemover::removeComments($test));
+
+ $test = <<<EOTEXT
+Subscribers:
+#projectname
+
+# Instructional comments.
+EOTEXT;
+
+ $expect = <<<EOTEXT
+Subscribers:
+#projectname
+
EOTEXT;
$this->assertEqual($expect, ArcanistCommentRemover::removeComments($test));
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 28, 4:47 AM (1 w, 5 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7683420
Default Alt Text
D19639.diff (1 KB)
Attached To
Mode
D19639: Make the Arcanist comment remover less aggressive about stripping instructional comments
Attached
Detach File
Event Timeline
Log In to Comment