-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(original): update original source ( 231.282 )
- Loading branch information
1 parent
26dc40c
commit 80b0639
Showing
214 changed files
with
11,546 additions
and
11,684 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
original-plugin-raw/zh/com/jetbrains/webstorm/WebstormCommon.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
webstorm.migration.guide.title=从另一个 IDE 或代码编辑器转移 | ||
webstorm.migration.guide.description=来自其他 JetBrains IDE、VS Code 或是 Sublime Text? 请参阅我们的指南以更快上手。 | ||
webstorm.migration.guide.action=探索迁移指南 | ||
action.WebStormMigrationGuide.text=WebStorm 迁移指南 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...nal-plugin-raw/zh/inspectionDescriptions/AngularMissingRequiredDirectiveInputBinding.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
报告所需指令输入缺少的绑定。 | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 6 additions & 10 deletions
16
original-plugin-raw/zh/inspectionDescriptions/InfiniteRecursion.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
<html> | ||
<body> | ||
报告除非抛出异常否则无限调用自身的方法。 | ||
<p> | ||
此检查报告的方法不能正常返回。 | ||
虽然此类行为可能是有意为之,但在许多情况下,可能纯属疏忽。 | ||
</p> | ||
报告具有无限递归的方法和函数。 | ||
<p><b>示例:</b></p> | ||
<pre><code> int baz() { | ||
return baz(); | ||
}</code></pre> | ||
<!-- tooltip end --> | ||
|
||
<pre><code> | ||
int factorial(int n) { | ||
return n * factorial(n - 1); | ||
} | ||
</code></pre> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
original-plugin-raw/zh/inspectionDescriptions/RedundantCast.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,5 @@ | ||
<html> | ||
<body> | ||
报告不必要的转换表达式。 | ||
|
||
<p>示例:</p> | ||
<pre><code> | ||
static Object toObject(String s) { | ||
return (Object) s; | ||
} | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p> | ||
使用下面的复选框可以忽略澄清转换,例如应为 <code>Object</code> 的集合调用中的转换: | ||
<pre><code> | ||
static void removeFromList(List<String> l, Object o) { | ||
l.remove((String)o); | ||
} | ||
</code></pre> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
original-plugin-raw/zh/intentionDescriptions/AddBracesIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
<html><body> | ||
<p>在单行方法主体周围、值定义周围或 if/else 分支周围添加大括号。</p></body></html> | ||
<html> | ||
<body> | ||
添加大括号以控制流语句。 | ||
</body> | ||
</html> |
7 changes: 5 additions & 2 deletions
7
original-plugin-raw/zh/intentionDescriptions/AddNameToArgumentIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
<html><body> | ||
<p>将命名实参用作当前和后续的实参。</p></body></html> | ||
<html> | ||
<body> | ||
向函数的所选实参添加形参名称。 | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 3 additions & 17 deletions
20
original-plugin-raw/zh/intentionDescriptions/DemorgansIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,7 @@ | ||
<html> | ||
<body> | ||
在布尔表达式中时,将 | ||
<table> | ||
<tr> | ||
<td> </td> | ||
<td> | ||
<code>a || b</code> 替换为 <code>!(!a && !b)</code> 或 | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> </td> | ||
<td> | ||
<code>a && b</code> 替换为 <code>!(!a || !b)</code> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
。 | ||
遵循德摩根定律将把合取或析取运算替换为取反的对应运算。 | ||
<p>如果布尔运算在 <code>if</code> 或 <code>unless</code> 语句内部,则可以翻转语句修饰符 | ||
以简化最终结果。</p> | ||
</body> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
original-plugin-raw/zh/intentionDescriptions/ExpandBooleanIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>用等效的 <b>if-then-else</b> 语句替换使用布尔表达式的 <b>return</b> 语句。</p> | ||
将使用 <code>boolean</code> 表达式的声明、<code>return</code> 或赋值语句替换为等效的 <code>if</code> <code>else</code> 语句。 | ||
</body> | ||
</html> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
original-plugin-raw/zh/intentionDescriptions/ImportAllMembersIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>使用通配符语法导入软件包或类的所有内容,并用非限定的引用替换所有出现的内容。</p> | ||
添加所选引用的所有成员的导入,并移除该引用在文件中的显式用法。 | ||
</body> | ||
</html> | ||
</html> |
4 changes: 1 addition & 3 deletions
4
original-plugin-raw/zh/intentionDescriptions/InvertIfConditionIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>使用内部条件倒置的 <code>if</code> 语句替换另一个 <code>if</code> 语句。 | ||
此意图对于例如简化使用多个嵌套 <code>if</code> 语句的复杂代码很有用。 | ||
</p> | ||
反转 <code>if</code> 条件表达式。 | ||
</body> | ||
</html> |
2 changes: 1 addition & 1 deletion
2
original-plugin-raw/zh/intentionDescriptions/MergeElseIfIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>如果 <b>if-else</b> 语句的 <b>else</b> 分支仅包含嵌套的 <b>if-else</b> 语句,则合并 <b>else</b> 。</p> | ||
将 <code>else</code> 和没有 <code>else</code> 分支的嵌套 <code>if</code> 语句合并为一个 <code>else if</code>。 | ||
</body> | ||
</html> |
7 changes: 4 additions & 3 deletions
7
original-plugin-raw/zh/intentionDescriptions/NegateComparisonIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<html> | ||
<body> | ||
<p>将布尔比较表达式 <b>a</b> <small>op</small> <b>b</b> 转换为 !( <b>a</b> <small>negop</small> <b>b</b> )。 | ||
其中 <small>op</small> 和 <small>negop</small> 是互逆的比较运算符,如 == 和 !=。</p> | ||
将布尔比较表达式 <code><b>a</b> op <b>b</b></code> 转换为 <code>!( <b>a</b> negop <b>b</b>)</code>。 | ||
|
||
<p>在这个表达式中,<code>op</code> 和 <code>negop</code> 是互逆比较运算符,如 <code>==</code> 和 <code>!=</code>。</p> | ||
</body> | ||
</html> | ||
</html> |
Oops, something went wrong.