vendor tsgo

This commit is contained in:
2026-07-09 16:50:43 -04:00
parent c06ea2e5a4
commit 98978e4930
5804 changed files with 1556156 additions and 101 deletions

View File

@@ -0,0 +1,32 @@
// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual genericInterfacesWithConstraints1"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestGenericInterfacesWithConstraints1(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface A { a: string; }
interface B extends A { b: string; }
interface C extends B { c: string; }
interface G<T, U extends B> {
x: T;
y: U;
}
var v/*1*/1: G<A, C>; // Ok
var v/*2*/2: G<{ a: string }, C>; // Ok, equivalent to G<A, C>
var v/*3*/3: G<G<A, B>, C>; // Ok`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyQuickInfoAt(t, "1", "var v1: G<A, C>", "")
f.VerifyQuickInfoAt(t, "2", "var v2: G<{\n a: string;\n}, C>", "")
f.VerifyQuickInfoAt(t, "3", "var v3: G<G<A, B>, C>", "")
}