findPatternInProject

open fun findPatternInProject(pattern: String, globPattern: String): String


open fun findPatternInProject(pattern: <Error class: unknown class>, globPattern: String, asyncer: Asyncer? = null): List<PatternSearch.PatternMatch>

Finds files containing the specified pattern using glob patterns.

Return

List of matching files with their relevant content snippets

Parameters

pattern

The regex pattern to search for

globPattern

Glob pattern to match files

asyncer

Optional asyncer for parallel processing. If provided and file count 100, files are processed in parallel using the asyncer's thread pool. If null, files are processed sequentially.