161 lines
2.9 KiB
Go
161 lines
2.9 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual getOccurrencesThis4"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
. "github.com/microsoft/typescript-go/internal/fourslash/tests/util"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestGetOccurrencesThis4(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `this;
|
|
this;
|
|
|
|
function f() {
|
|
this;
|
|
this;
|
|
() => this;
|
|
() => {
|
|
if (this) {
|
|
this;
|
|
}
|
|
else {
|
|
this.this;
|
|
}
|
|
}
|
|
function inside() {
|
|
this;
|
|
(function (_) {
|
|
this;
|
|
})(this);
|
|
}
|
|
}
|
|
|
|
namespace m {
|
|
function f() {
|
|
this;
|
|
this;
|
|
() => this;
|
|
() => {
|
|
if (this) {
|
|
this;
|
|
}
|
|
else {
|
|
this.this;
|
|
}
|
|
}
|
|
function inside() {
|
|
this;
|
|
(function (_) {
|
|
this;
|
|
})(this);
|
|
}
|
|
}
|
|
}
|
|
|
|
class A {
|
|
public b = [|this|].method1;
|
|
|
|
public method1() {
|
|
[|this|];
|
|
[|this|];
|
|
() => [|this|];
|
|
() => {
|
|
if ([|this|]) {
|
|
[|this|];
|
|
}
|
|
else {
|
|
[|this|].this;
|
|
}
|
|
}
|
|
function inside() {
|
|
this;
|
|
(function (_) {
|
|
this;
|
|
})(this);
|
|
}
|
|
}
|
|
|
|
private method2() {
|
|
[|this|];
|
|
[|this|];
|
|
() => [|t/**/his|];
|
|
() => {
|
|
if ([|this|]) {
|
|
[|this|];
|
|
}
|
|
else {
|
|
[|this|].this;
|
|
}
|
|
}
|
|
function inside() {
|
|
this;
|
|
(function (_) {
|
|
this;
|
|
})(this);
|
|
}
|
|
}
|
|
|
|
public static staticB = this.staticMethod1;
|
|
|
|
public static staticMethod1() {
|
|
this;
|
|
this;
|
|
() => this;
|
|
() => {
|
|
if (this) {
|
|
this;
|
|
}
|
|
else {
|
|
this.this;
|
|
}
|
|
}
|
|
function inside() {
|
|
this;
|
|
(function (_) {
|
|
this;
|
|
})(this);
|
|
}
|
|
}
|
|
|
|
private static staticMethod2() {
|
|
this;
|
|
this;
|
|
() => this;
|
|
() => {
|
|
if (this) {
|
|
this;
|
|
}
|
|
else {
|
|
this.this;
|
|
}
|
|
}
|
|
function inside() {
|
|
this;
|
|
(function (_) {
|
|
this;
|
|
})(this);
|
|
}
|
|
}
|
|
}
|
|
|
|
var x = {
|
|
f() {
|
|
this;
|
|
},
|
|
g() {
|
|
this;
|
|
}
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyBaselineDocumentHighlights(t, nil /*preferences*/, ToAny(f.Ranges())...)
|
|
}
|