37 lines
850 B
Go
37 lines
850 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual jsDocExtends"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestJsDocExtends(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: dummy.js
|
|
/**
|
|
* @extends {Thing<string>}
|
|
*/
|
|
class MyStringThing extends Thing {
|
|
constructor() {
|
|
var x = this.mine;
|
|
x/**/;
|
|
}
|
|
}
|
|
// @Filename: declarations.d.ts
|
|
declare class Thing<T> {
|
|
mine: T;
|
|
}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToMarker(t, "")
|
|
f.VerifyQuickInfoIs(t, "(local var) x: string", "")
|
|
}
|