31 lines
857 B
Go
31 lines
857 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual quickInfoJsPropertyAssignedAfterMethodDeclaration"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestQuickInfoJsPropertyAssignedAfterMethodDeclaration(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @noLib: true
|
|
// @allowJs: true
|
|
// @noImplicitThis: true
|
|
// @Filename: /a.js
|
|
const o = {
|
|
test/*1*/() {
|
|
this./*2*/test = 0;
|
|
}
|
|
};`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyQuickInfoAt(t, "1", "(method) test(): void", "")
|
|
f.VerifyQuickInfoAt(t, "2", "(method) test(): void", "")
|
|
}
|