findDeclarationOf

Finds all declarations of a symbol in the given fileNames and calls a handler on every occurence.

  1. void findDeclarationOf(File output, string symbolName, string[] fileNames)
  2. void findDeclarationOf(OutputHandler output, string symbolName, string[] fileNames)
    void
    findDeclarationOf
    (,
    string symbolName
    ,
    string[] fileNames
    )

Parameters

output OutputHandler

Callback which gets called when a declaration is found

symbolName string

Symbol name to search for

fileNames string[]

An array of file names which might contain stdin to read from stdin

Meta