Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14040957
D10538.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
7 KB
Referenced Files
None
Subscribers
None
D10538.diff
View Options
diff --git a/src/lint/linter/ArcanistXHPASTLinter.php b/src/lint/linter/ArcanistXHPASTLinter.php
--- a/src/lint/linter/ArcanistXHPASTLinter.php
+++ b/src/lint/linter/ArcanistXHPASTLinter.php
@@ -201,7 +201,7 @@
public function getVersion() {
// The version number should be incremented whenever a new rule is added.
- return '11';
+ return '12';
}
protected function resolveFuture($path, Future $future) {
@@ -451,27 +451,44 @@
foreach ($calls as $call) {
$node = $call->getChildByIndex(0);
$name = $node->getConcreteString();
- $version = idx($compat_info['functions'], $name);
- if ($version && version_compare($version['min'], $this->version, '>')) {
- // Check if whitelisted.
- $whitelisted = false;
- foreach (idx($whitelist['function'], $name, array()) as $range) {
- if (array_intersect($range, array_keys($node->getTokens()))) {
- $whitelisted = true;
- break;
- }
- }
+ $version = idx($compat_info['functions'], $name, array());
+ $min = idx($version, 'min');
+ $max = idx($version, 'max');
- if ($whitelisted) {
- continue;
+ // Check if whitelisted.
+ $whitelisted = false;
+ foreach (idx($whitelist['function'], $name, array()) as $range) {
+ if (array_intersect($range, array_keys($node->getTokens()))) {
+ $whitelisted = true;
+ break;
}
+ }
+
+ if ($whitelisted) {
+ continue;
+ }
+ if ($min && version_compare($min, $this->version, '>')) {
+ $this->raiseLintAtNode(
+ $node,
+ self::LINT_PHP_COMPATIBILITY,
+ pht(
+ 'This codebase targets PHP %s, but `%s()` was not '.
+ 'introduced until PHP %s.',
+ $this->version,
+ $name,
+ $min));
+ } else if ($max && version_compare($max, $this->version, '<')) {
$this->raiseLintAtNode(
$node,
self::LINT_PHP_COMPATIBILITY,
- "This codebase targets PHP {$this->version}, but `{$name}()` was ".
- "not introduced until PHP {$version['min']}.");
+ pht(
+ 'This codebase targets PHP %s, but `%s()` was '.
+ 'removed in PHP %s.',
+ $this->version,
+ $name,
+ $max));
} else if (array_key_exists($name, $compat_info['params'])) {
$params = $call->getChildOfType(1, 'n_CALL_PARAMETER_LIST');
foreach (array_values($params->getChildren()) as $i => $param) {
@@ -480,9 +497,13 @@
$this->raiseLintAtNode(
$param,
self::LINT_PHP_COMPATIBILITY,
- "This codebase targets PHP {$this->version}, but parameter ".
- ($i + 1)." of `{$name}()` was not introduced until PHP ".
- "{$version}.");
+ pht(
+ 'This codebase targets PHP %s, but parameter %d '.
+ 'of `%s()` was not introduced until PHP %s.',
+ $this->version,
+ $i + 1,
+ $name,
+ $version));
}
}
}
@@ -494,15 +515,21 @@
$this->raiseLintAtNode(
$node,
self::LINT_PHP_COMPATIBILITY,
- "This codebase targets PHP {$this->windowsVersion} on Windows, ".
- "but `{$name}()` is not available there.");
+ pht(
+ 'This codebase targets PHP %s on Windows, '.
+ 'but `%s()` is not available there.',
+ $this->windowsVersion,
+ $name));
} else if (version_compare($windows, $this->windowsVersion, '>')) {
$this->raiseLintAtNode(
$node,
self::LINT_PHP_COMPATIBILITY,
- "This codebase targets PHP {$this->windowsVersion} on Windows, ".
- "but `{$name}()` is not available there until PHP ".
- "{$this->windowsVersion}.");
+ pht(
+ 'This codebase targets PHP %s on Windows, '.
+ 'but `%s()` is not available there until PHP %s.',
+ $this->windowsVersion,
+ $name,
+ $windows));
}
}
}
@@ -510,9 +537,10 @@
$classes = $root->selectDescendantsOfType('n_CLASS_NAME');
foreach ($classes as $node) {
$name = $node->getConcreteString();
- $version = idx($compat_info['interfaces'], $name);
+ $version = idx($compat_info['interfaces'], $name, array());
$version = idx($compat_info['classes'], $name, $version);
- if ($version && version_compare($version['min'], $this->version, '>')) {
+ $min = idx($version, 'min');
+ $max = idx($version, 'max');
// Check if whitelisted.
$whitelisted = false;
foreach (idx($whitelist['class'], $name, array()) as $range) {
@@ -526,11 +554,26 @@
continue;
}
+ if ($min && version_compare($min, $this->version, '>')) {
+ $this->raiseLintAtNode(
+ $node,
+ self::LINT_PHP_COMPATIBILITY,
+ pht(
+ 'This codebase targets PHP %s, but `%s` was not '.
+ 'introduced until PHP %s.',
+ $this->version,
+ $name,
+ $min));
+ } else if ($max && version_compare($max, $this->version, '<')) {
$this->raiseLintAtNode(
$node,
self::LINT_PHP_COMPATIBILITY,
- "This codebase targets PHP {$this->version}, but `{$name}` was not ".
- "introduced until PHP {$version['min']}.");
+ pht(
+ 'This codebase targets PHP %s, but `%s` was '.
+ 'removed in PHP %s.',
+ $this->version,
+ $name,
+ $max));
}
}
@@ -540,13 +583,30 @@
$constants = $root->selectDescendantsOfType('n_SYMBOL_NAME');
foreach ($constants as $node) {
$name = $node->getConcreteString();
- $version = idx($compat_info['constants'], $name);
- if ($version && version_compare($version['min'], $this->version, '>')) {
+ $version = idx($compat_info['constants'], $name, array());
+ $min = idx($version, 'min');
+ $max = idx($version, 'max');
+
+ if ($min && version_compare($min, $this->version, '>')) {
+ $this->raiseLintAtNode(
+ $node,
+ self::LINT_PHP_COMPATIBILITY,
+ pht(
+ 'This codebase targets PHP %s, but `%s` was not '.
+ 'introduced until PHP %s.',
+ $this->version,
+ $name,
+ $min));
+ } else if ($max && version_compare($max, $this->version, '<')) {
$this->raiseLintAtNode(
$node,
self::LINT_PHP_COMPATIBILITY,
- "This codebase targets PHP {$this->version}, but `{$name}` was not ".
- "introduced until PHP {$version['min']}.");
+ pht(
+ 'This codebase targets PHP %s, but `%s` was '.
+ 'removed in PHP %s.',
+ $this->version,
+ $name,
+ $max));
}
}
diff --git a/src/lint/linter/__tests__/xhpast/php-compatibility.lint-test b/src/lint/linter/__tests__/xhpast/php-compatibility.lint-test
new file mode 100644
--- /dev/null
+++ b/src/lint/linter/__tests__/xhpast/php-compatibility.lint-test
@@ -0,0 +1,10 @@
+<?php
+
+define_syslog_variables();
+var_dump(STREAM_ENFORCE_SAFE_MODE);
+~~~~~~~~~~
+error:3:1
+error:4:10
+~~~~~~~~~~
+~~~~~~~~~~
+{"config": {"xhpast.php-version": "5.4.0"}}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 12, 2:38 PM (1 d, 14 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6736756
Default Alt Text
D10538.diff (7 KB)
Attached To
Mode
D10538: Raise a linter error when removed symbols are used
Attached
Detach File
Event Timeline
Log In to Comment