mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 02:13:31 -06:00
*Actually dispatched* on the logic.
This commit is contained in:
parent
93bb224545
commit
d8d494d4da
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user