mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
*Actually dispatched* on the logic.
This commit is contained in:
@@ -916,8 +916,9 @@ module ts.server {
|
||||
break;
|
||||
}
|
||||
case CommandNames.Occurrences: {
|
||||
var occurrencesArgs = <protocol.FileLocationRequestArgs>request.arguments;
|
||||
response = this
|
||||
var { line, offset, file: fileName } = <protocol.FileLocationRequestArgs>request.arguments;
|
||||
response = this.getOccurrences(line, offset, fileName);
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
this.projectService.log("Unrecognized JSON command: " + message);
|
||||
|
||||
Reference in New Issue
Block a user