vendor tsgo
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual jsDocAugments"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestJsDocAugments(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `// @allowJs: true
|
||||
// @Filename: dummy.js
|
||||
/**
|
||||
* @augments {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", "")
|
||||
}
|
||||
Reference in New Issue
Block a user