vendor tsgo
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
// Code generated by convertFourslash; DO NOT EDIT.
|
||||
// To modify this test, run "npm run makemanual quickInfoCommentsFunctionExpression"
|
||||
|
||||
package fourslash_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/microsoft/typescript-go/internal/fourslash"
|
||||
"github.com/microsoft/typescript-go/internal/testutil"
|
||||
)
|
||||
|
||||
func TestQuickInfoCommentsFunctionExpression(t *testing.T) {
|
||||
fourslash.SkipIfFailing(t)
|
||||
t.Parallel()
|
||||
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
||||
const content = `/** lambdaFoo var comment*/
|
||||
var lamb/*1*/daFoo = /** this is lambda comment*/ (/**param a*/a: number, /**param b*/b: number) => a + b;
|
||||
var lambddaN/*3*/oVarComment = /** this is lambda multiplication*/ (/**param a*/a: number, /**param b*/b: number) => a * b;
|
||||
lambdaFoo(10, 20);
|
||||
function /*7*/anotherFunc(a: number) {
|
||||
/** documentation
|
||||
@param b {string} inner parameter */
|
||||
var /*8*/lambdaVar = /** inner docs */(/*9*/b: string) => {
|
||||
var /*10*/localVar = "Hello ";
|
||||
return /*11*/localVar + /*12*/b;
|
||||
}
|
||||
return lamb/*13*/daVar("World") + a;
|
||||
}
|
||||
/**
|
||||
* On variable
|
||||
* @param s the first parameter!
|
||||
* @returns the parameter's length
|
||||
*/
|
||||
var assi/*14*/gned = /**
|
||||
* Summary on expression
|
||||
* @param s param on expression
|
||||
* @returns return on expression
|
||||
*/function(/** On parameter */s: string) {
|
||||
return s.length;
|
||||
}
|
||||
assig/*16*/ned("hey");`
|
||||
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
||||
defer done()
|
||||
f.VerifyBaselineHover(t)
|
||||
}
|
||||
Reference in New Issue
Block a user