File tree Expand file tree Collapse file tree 4 files changed +0
-5
lines changed Expand file tree Collapse file tree 4 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -798,7 +798,6 @@ module TypeScript.Services.Breakpoints {
798
798
var container = Syntax . containingNode ( varDeclarationNode ) ;
799
799
var varDeclarationSyntax = < TypeScript . VariableDeclarationSyntax > varDeclarationNode ;
800
800
var varDeclarators = varDeclarationSyntax . variableDeclarators ;
801
- var varDeclaratorsCount = childCount ( varDeclarators ) ; // varDeclarators has to be non null because its checked in canHaveBreakpoint
802
801
803
802
if ( container && container . kind ( ) == TypeScript . SyntaxKind . VariableStatement ) {
804
803
return this . breakpointSpanOfVariableStatement ( container ) ;
Original file line number Diff line number Diff line change @@ -211,8 +211,6 @@ module TypeScript.Services {
211
211
signatureGroupInfo . signatureInfo = TypeScript . MemberName . memberNameToString ( symbolName , paramIndexInfo ) ;
212
212
signatureGroupInfo . docComment = symbol . docComments ( ) ;
213
213
214
- var parameterMarkerIndex = 0 ;
215
-
216
214
var typeSymbol = symbol . type ;
217
215
218
216
var typeParameters = typeSymbol . getTypeParameters ( ) ;
Original file line number Diff line number Diff line change @@ -84,7 +84,6 @@ module TypeScript {
84
84
private cacheSyntaxTreeInfo ( ) : void {
85
85
// If we're not keeping around the syntax tree, store the diagnostics and line
86
86
// map so they don't have to be recomputed.
87
- var sourceUnit = this . sourceUnit ( ) ;
88
87
var firstToken = firstSyntaxTreeToken ( this ) ;
89
88
var leadingTrivia = firstToken . leadingTrivia ( this . text ) ;
90
89
Original file line number Diff line number Diff line change @@ -150,7 +150,6 @@ module TypeScript.Syntax {
150
150
151
151
// When we run into a newline for the first time, create the string builder and copy
152
152
// all the values up to this newline into it.
153
- var isCarriageReturnLineFeed = false ;
154
153
switch ( ch ) {
155
154
case CharacterCodes . carriageReturn :
156
155
if ( i < triviaText . length - 1 && triviaText . charCodeAt ( i + 1 ) === CharacterCodes . lineFeed ) {
You can’t perform that action at this time.
0 commit comments