Skip to content

Commit 20054d9

Browse files
committed
Merge branch 'master' into fix_lookup_regression_again_and_again
2 parents eb7fbdc + 8474949 commit 20054d9

File tree

2,094 files changed

+47292
-20274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,094 files changed

+47292
-20274
lines changed

.github/ISSUE_TEMPLATE/Bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please fill in the *entire* template below.
1616
-->
1717

1818
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
19-
**TypeScript Version:** 3.1.0-dev.201xxxxx
19+
**TypeScript Version:** 3.2.0-dev.201xxxxx
2020

2121
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
2222
**Search Terms:**

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ branches:
2020
- release-2.8
2121
- release-2.9
2222
- release-3.0
23+
- release-3.1
2324

2425
install:
2526
- npm uninstall typescript --no-save

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Your pull request should:
7272
* Requests need not be a single commit, but should be a linear sequence of commits (i.e. no merge commits in your PR)
7373
* It is desirable, but not necessary, for the tests to pass at each commit
7474
* Have clear commit messages
75-
* e.g. "Refactor feature", "Fix issue", "Add tests for issue"
75+
* e.g. "Minor refactor in goToTypeDefinition", "Fix iterated type in for-await-of", "Add test for preserveWatchOutput on command line"
7676
* Include adequate tests
7777
* At least one test should fail in the absence of your non-test code changes. If your PR does not match this criteria, please specify why
7878
* Tests should include reasonable permutations of the target fix/change
@@ -104,7 +104,7 @@ To run all tests, invoke the `runtests-parallel` target using jake:
104104
jake runtests-parallel
105105
```
106106

107-
This run will all tests; to run only a specific subset of tests, use:
107+
This will run all tests; to run only a specific subset of tests, use:
108108

109109
```Shell
110110
jake runtests tests=<regex>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Change to the TypeScript directory:
6161
cd TypeScript
6262
```
6363

64-
Install Jake tools and dev dependencies:
64+
Install [Jake](http://jakejs.com/) tools and dev dependencies:
6565

6666
```bash
6767
npm install -g jake

doc/spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ function f(s) {
286286
}
287287
```
288288

289-
In the JavaScript output, all type annotations have been erased. In general, TypeScript erases all type information before emiting JavaScript.
289+
In the JavaScript output, all type annotations have been erased. In general, TypeScript erases all type information before emitting JavaScript.
290290

291291
## <a name="1.1"/>1.1 Ambient Declarations
292292

lib/tsc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63675,7 +63675,7 @@ var ts;
6367563675
emitCallback(node);
6367663676
}
6367763677
if (extendedDiagnostics) {
63678-
ts.performance.mark("beginEmitBodyWithDetachedCommetns");
63678+
ts.performance.mark("beginEmitBodyWithDetachedComments");
6367963679
}
6368063680
if (!skipTrailingComments) {
6368163681
emitLeadingComments(detachedRange.end, true);
@@ -63684,7 +63684,7 @@ var ts;
6368463684
}
6368563685
}
6368663686
if (extendedDiagnostics) {
63687-
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedCommetns");
63687+
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedComments");
6368863688
}
6368963689
}
6369063690
function emitLeadingComments(pos, isEmittedNode) {

lib/tsserver.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78883,7 +78883,7 @@ var ts;
7888378883
emitCallback(node);
7888478884
}
7888578885
if (extendedDiagnostics) {
78886-
ts.performance.mark("beginEmitBodyWithDetachedCommetns");
78886+
ts.performance.mark("beginEmitBodyWithDetachedComments");
7888778887
}
7888878888
if (!skipTrailingComments) {
7888978889
emitLeadingComments(detachedRange.end, /*isEmittedNode*/ true);
@@ -78892,7 +78892,7 @@ var ts;
7889278892
}
7889378893
}
7889478894
if (extendedDiagnostics) {
78895-
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedCommetns");
78895+
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedComments");
7889678896
}
7889778897
}
7889878898
function emitLeadingComments(pos, isEmittedNode) {

lib/tsserverlibrary.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78870,7 +78870,7 @@ var ts;
7887078870
emitCallback(node);
7887178871
}
7887278872
if (extendedDiagnostics) {
78873-
ts.performance.mark("beginEmitBodyWithDetachedCommetns");
78873+
ts.performance.mark("beginEmitBodyWithDetachedComments");
7887478874
}
7887578875
if (!skipTrailingComments) {
7887678876
emitLeadingComments(detachedRange.end, /*isEmittedNode*/ true);
@@ -78879,7 +78879,7 @@ var ts;
7887978879
}
7888078880
}
7888178881
if (extendedDiagnostics) {
78882-
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedCommetns");
78882+
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedComments");
7888378883
}
7888478884
}
7888578885
function emitLeadingComments(pos, isEmittedNode) {

lib/typescript.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78870,7 +78870,7 @@ var ts;
7887078870
emitCallback(node);
7887178871
}
7887278872
if (extendedDiagnostics) {
78873-
ts.performance.mark("beginEmitBodyWithDetachedCommetns");
78873+
ts.performance.mark("beginEmitBodyWithDetachedComments");
7887478874
}
7887578875
if (!skipTrailingComments) {
7887678876
emitLeadingComments(detachedRange.end, /*isEmittedNode*/ true);
@@ -78879,7 +78879,7 @@ var ts;
7887978879
}
7888078880
}
7888178881
if (extendedDiagnostics) {
78882-
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedCommetns");
78882+
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedComments");
7888378883
}
7888478884
}
7888578885
function emitLeadingComments(pos, isEmittedNode) {

lib/typescriptServices.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78870,7 +78870,7 @@ var ts;
7887078870
emitCallback(node);
7887178871
}
7887278872
if (extendedDiagnostics) {
78873-
ts.performance.mark("beginEmitBodyWithDetachedCommetns");
78873+
ts.performance.mark("beginEmitBodyWithDetachedComments");
7887478874
}
7887578875
if (!skipTrailingComments) {
7887678876
emitLeadingComments(detachedRange.end, /*isEmittedNode*/ true);
@@ -78879,7 +78879,7 @@ var ts;
7887978879
}
7888078880
}
7888178881
if (extendedDiagnostics) {
78882-
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedCommetns");
78882+
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedComments");
7888378883
}
7888478884
}
7888578885
function emitLeadingComments(pos, isEmittedNode) {

lib/typingsInstaller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78883,7 +78883,7 @@ var ts;
7888378883
emitCallback(node);
7888478884
}
7888578885
if (extendedDiagnostics) {
78886-
ts.performance.mark("beginEmitBodyWithDetachedCommetns");
78886+
ts.performance.mark("beginEmitBodyWithDetachedComments");
7888778887
}
7888878888
if (!skipTrailingComments) {
7888978889
emitLeadingComments(detachedRange.end, /*isEmittedNode*/ true);
@@ -78892,7 +78892,7 @@ var ts;
7889278892
}
7889378893
}
7889478894
if (extendedDiagnostics) {
78895-
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedCommetns");
78895+
ts.performance.measure("commentTime", "beginEmitBodyWithDetachedComments");
7889678896
}
7889778897
}
7889878898
function emitLeadingComments(pos, isEmittedNode) {

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "typescript",
33
"author": "Microsoft Corp.",
4-
"homepage": "http://typescriptlang.org/",
5-
"version": "3.1.0",
4+
"homepage": "https://www.typescriptlang.org/",
5+
"version": "3.2.0",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [
@@ -75,6 +75,7 @@
7575
"gulp-typescript": "latest",
7676
"istanbul": "latest",
7777
"jake": "latest",
78+
"lodash": "4.17.10",
7879
"merge2": "latest",
7980
"minimist": "latest",
8081
"mkdirp": "latest",

0 commit comments

Comments
 (0)