vendor tsgo
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual signatureHelpRestArgs1"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestSignatureHelpRestArgs1(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `function fn(a: number, b: number, c: number) {}
|
||||
const a = [1, 2] as const;
|
||||
const b = [1] as const;
|
||||
|
||||
fn(...a, /*1*/);
|
||||
fn(/*2*/, ...a);
|
||||
|
||||
fn(...b, /*3*/);
|
||||
fn(/*4*/, ...b, /*5*/);`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineSignatureHelp(t)
|
||||
}
|
||||
Reference in New Issue
Block a user