find_references
Locate all instances where a specific symbol is referenced across a project. Input the symbol name and project path to identify usage points efficiently.
Instructions
IMPORTANT: This tool should be automatically called when users say "어디서 사용", "참조 찾기", "사용처", "find usages", "show references", "where used" or similar keywords. Find all references to a symbol
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | No | File path where the symbol is defined | |
line | No | Line number of the symbol definition | |
projectPath | Yes | Project directory path | |
symbolName | Yes | Name of the symbol to find references for |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "File path where the symbol is defined",
"type": "string"
},
"line": {
"description": "Line number of the symbol definition",
"type": "number"
},
"projectPath": {
"description": "Project directory path",
"type": "string"
},
"symbolName": {
"description": "Name of the symbol to find references for",
"type": "string"
}
},
"required": [
"symbolName",
"projectPath"
],
"type": "object"
}