Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15335456
D20479.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
D20479.diff
View Options
diff --git a/src/infrastructure/diff/PhabricatorDiffScopeEngine.php b/src/infrastructure/diff/PhabricatorDiffScopeEngine.php
--- a/src/infrastructure/diff/PhabricatorDiffScopeEngine.php
+++ b/src/infrastructure/diff/PhabricatorDiffScopeEngine.php
@@ -83,6 +83,12 @@
continue;
}
+ // Don't match context lines which are too deeply indented, since they
+ // are very unlikely to be symbol definitions.
+ if ($depth > 2) {
+ continue;
+ }
+
// The depth is the same as (or greater than) the depth we started with,
// so this isn't a possible match.
if ($depth >= $line_depth) {
@@ -109,11 +115,14 @@
return $this->lineDepthMap;
}
+ private function getTabWidth() {
+ // TODO: This should be configurable once we handle tab widths better.
+ return 2;
+ }
+
private function newLineDepthMap() {
$text_map = $this->getLineTextMap();
-
- // TODO: This should be configurable once we handle tab widths better.
- $tab_width = 2;
+ $tab_width = $this->getTabWidth();
$depth_map = array();
foreach ($text_map as $line_number => $line_text) {
@@ -143,9 +152,8 @@
}
// Round down to cheat our way through the " *" parts of docblock
- // comments. This is generally a reasonble heuristic because odd tab
- // widths are exceptionally rare.
- $depth = ($count >> 1);
+ // comments.
+ $depth = (int)floor($count / $tab_width);
$depth_map[$line_number] = $depth;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 9, 3:32 PM (3 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7332331
Default Alt Text
D20479.diff (1 KB)
Attached To
Mode
D20479: Make very minor generality improvements to the scope selector
Attached
Detach File
Event Timeline
Log In to Comment