Pike LSP TypeScript API - v0.1.0-alpha.20
    Preparing search index...
    PatternHelpers: {
        functionCallPattern(functionName: string): RegExp;
        isCommentLine(line: string): boolean;
        isNotCommentLine(line: string): boolean;
        wholeWordPattern(identifier: string): RegExp;
    } = ...

    Helper functions for working with patterns.

    Type Declaration

    • functionCallPattern: function
      • Create a regex that matches a function call pattern.

        Parameters

        • functionName: string

          The function name to match.

        Returns RegExp

        A regex that matches functionName( as a whole word.

    • isCommentLine: function
    • isNotCommentLine: function
    • wholeWordPattern: function