Merge remote-tracking branch 'upstream/rc/1.20' into merge/rc/1.20

This commit is contained in:
Robert Brignull
2019-03-13 10:55:30 +00:00
68 changed files with 16345 additions and 600 deletions

View File

@@ -0,0 +1,7 @@
class C {
static get foo() {} // OK
static set foo(v) {} // OK
get bar() {} // OK
set bar(v) {} // OK
}

View File

@@ -0,0 +1,11 @@
import { Foo, Bar, Baz } from "somewhere"; // OK
export function f(this: Foo) {}
export class C {
m(this: Bar) {}
}
export default {
foo(this: Baz) {}
}