vendor tsgo
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual outliningSpansForFunction"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestOutliningSpansForFunction(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `[|(
|
||||
a: number,
|
||||
b: number
|
||||
) => {
|
||||
return a + b;
|
||||
}|];
|
||||
|
||||
(a: number, b: number) =>[| {
|
||||
return a + b;
|
||||
}|]
|
||||
|
||||
const f1 = function[| (
|
||||
a: number
|
||||
b: number
|
||||
) {
|
||||
return a + b;
|
||||
}|]
|
||||
|
||||
const f2 = function (a: number, b: number)[| {
|
||||
return a + b;
|
||||
}|]
|
||||
|
||||
function f3[| (
|
||||
a: number
|
||||
b: number
|
||||
) {
|
||||
return a + b;
|
||||
}|]
|
||||
|
||||
function f4(a: number, b: number)[| {
|
||||
return a + b;
|
||||
}|]
|
||||
|
||||
class Foo[| {
|
||||
constructor[|(
|
||||
a: number,
|
||||
b: number
|
||||
) {
|
||||
this.a = a;
|
||||
this.b = b;
|
||||
}|]
|
||||
|
||||
m1[|(
|
||||
a: number,
|
||||
b: number
|
||||
) {
|
||||
return a + b;
|
||||
}|]
|
||||
|
||||
m1(a: number, b: number)[| {
|
||||
return a + b;
|
||||
}|]
|
||||
}|]
|
||||
|
||||
declare function foo(props: any): void;
|
||||
foo[|(
|
||||
a =>[| {
|
||||
|
||||
}|]
|
||||
)|]
|
||||
|
||||
foo[|(
|
||||
(a) =>[| {
|
||||
|
||||
}|]
|
||||
)|]
|
||||
|
||||
foo[|(
|
||||
(a, b, c) =>[| {
|
||||
|
||||
}|]
|
||||
)|]
|
||||
|
||||
foo[|([|
|
||||
(a,
|
||||
b,
|
||||
c) => {
|
||||
|
||||
}|]
|
||||
)|]`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyOutliningSpans(t)
|
||||
}
|
||||
Reference in New Issue
Block a user