File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 20
20
"istanbul" : " ^0.4.5" ,
21
21
"mkdirp" : " ^0.5.1" ,
22
22
"mocha" : " ^2.4.5" ,
23
- "typescript" : " ^2.1.5 " ,
23
+ "typescript" : " ^2.5.2 " ,
24
24
"xml2js" : " ^0.4.16"
25
25
},
26
26
"dependencies" : {
27
- "vscode-languageserver-types" : " ^3.3.0-alpha.1 " ,
27
+ "vscode-languageserver-types" : " ^3.3.0" ,
28
28
"vscode-nls" : " ^2.0.1"
29
29
},
30
30
"scripts" : {
Original file line number Diff line number Diff line change @@ -429,6 +429,8 @@ export class Stylesheet extends Node {
429
429
}
430
430
431
431
export class Declarations extends Node {
432
+ private _declarations : void ; // workaround for https://github.com/Microsoft/TypeScript/issues/18276
433
+
432
434
constructor ( offset : number , length : number ) {
433
435
super ( offset , length ) ;
434
436
}
@@ -1203,6 +1205,8 @@ export class Operator extends Node {
1203
1205
}
1204
1206
1205
1207
export class HexColorValue extends Node {
1208
+ private _hexColorValue : void ; // workaround for https://github.com/Microsoft/TypeScript/issues/18276
1209
+
1206
1210
constructor ( offset : number , length : number ) {
1207
1211
super ( offset , length ) ;
1208
1212
}
@@ -1290,6 +1294,8 @@ export class VariableDeclaration extends AbstractDeclaration {
1290
1294
}
1291
1295
1292
1296
export class Interpolation extends Node {
1297
+
1298
+ private _interpolations : void ; // workaround for https://github.com/Microsoft/TypeScript/issues/18276
1293
1299
1294
1300
constructor ( offset : number , length : number ) {
1295
1301
super ( offset , length ) ;
You can’t perform that action at this time.
0 commit comments