Remove erronious change to shims.ts in previous commit

This commit is contained in:
Mohamed Hegazy 2015-05-01 15:14:16 -07:00
parent 1de5ea802b
commit 70c2d58f58

View File

@ -561,7 +561,7 @@ module ts {
return this.forwardJSONCall(
"getDefinitionAtPosition('" + fileName + "', " + position + ")",
() => {
return this.languageService.getTypeDefinitionAtPosition(fileName, position);
return this.languageService.getDefinitionAtPosition(fileName, position);
});
}