File: jsDocFunctionSignatures5.ts

package info (click to toggle)
node-typescript 4.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 396,552 kB
  • sloc: javascript: 1,444,377; makefile: 7; sh: 3
file content (29 lines) | stat: -rw-r--r-- 1,294 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
///<reference path="fourslash.ts" />
// @allowJs: true
// @Filename: Foo.js

/////**
//// * Filters a path based on a regexp or glob pattern.
//// * @param {String} basePath The base path where the search will be performed.
//// * @param {String} pattern A string defining a regexp of a glob pattern.
//// * @param {String} type The search pattern type, can be a regexp or a glob.
//// * @param {Object} options A object containing options to the search.
//// * @return {Array} A list containing the filtered paths.
//// */
////function pathFilter(basePath, pattern, type, options){
//////...
////}
////pathFilter(/**/'foo', 'bar', 'baz', {});

verify.signatureHelp({
    marker: "",
    docComment: "Filters a path based on a regexp or glob pattern.",
    parameterDocComment: "The base path where the search will be performed.",
    tags: [
        { name: "param", text: "basePath The base path where the search will be performed." },
        { name: "param", text: "pattern A string defining a regexp of a glob pattern." },
        { name: "param", text: "type The search pattern type, can be a regexp or a glob." },
        { name: "param", text: "options A object containing options to the search." },
        { name: "return", text: "A list containing the filtered paths." },
    ],
});