@@ -847,7 +847,10 @@ export class ContextKeyDefinedExpr implements IContextKeyExpression {
847
847
848
848
public readonly type = ContextKeyExprType . Defined ;
849
849
850
- protected constructor ( readonly key : string , private negated : ContextKeyExpression | undefined ) { }
850
+ protected constructor (
851
+ readonly key : string ,
852
+ private negated : ContextKeyExpression | undefined ,
853
+ ) { }
851
854
852
855
public cmp ( other : ContextKeyExpression ) : number {
853
856
if ( other . type !== this . type ) {
@@ -977,7 +980,10 @@ export class ContextKeyInExpr implements IContextKeyExpression {
977
980
public readonly type = ContextKeyExprType . In ;
978
981
private negated : ContextKeyExpression | undefined = undefined ;
979
982
980
- private constructor ( private readonly key : string , private readonly valueKey : string ) { }
983
+ private constructor (
984
+ private readonly key : string ,
985
+ private readonly valueKey : string ,
986
+ ) { }
981
987
982
988
public cmp ( other : ContextKeyExpression ) : number {
983
989
if ( other . type !== this . type ) {
@@ -1045,7 +1051,10 @@ export class ContextKeyNotInExpr implements IContextKeyExpression {
1045
1051
1046
1052
private readonly _negated : ContextKeyInExpr ;
1047
1053
1048
- private constructor ( private readonly key : string , private readonly valueKey : string ) {
1054
+ private constructor (
1055
+ private readonly key : string ,
1056
+ private readonly valueKey : string ,
1057
+ ) {
1049
1058
this . _negated = ContextKeyInExpr . create ( key , valueKey ) ;
1050
1059
}
1051
1060
@@ -1176,7 +1185,10 @@ export class ContextKeyNotExpr implements IContextKeyExpression {
1176
1185
1177
1186
public readonly type = ContextKeyExprType . Not ;
1178
1187
1179
- private constructor ( private readonly key : string , private negated : ContextKeyExpression | undefined ) { }
1188
+ private constructor (
1189
+ private readonly key : string ,
1190
+ private negated : ContextKeyExpression | undefined ,
1191
+ ) { }
1180
1192
1181
1193
public cmp ( other : ContextKeyExpression ) : number {
1182
1194
if ( other . type !== this . type ) {
@@ -1496,7 +1508,10 @@ export class ContextKeyRegexExpr implements IContextKeyExpression {
1496
1508
public readonly type = ContextKeyExprType . Regex ;
1497
1509
private negated : ContextKeyExpression | undefined = undefined ;
1498
1510
1499
- private constructor ( private readonly key : string , private readonly regexp : RegExp | undefined ) {
1511
+ private constructor (
1512
+ private readonly key : string ,
1513
+ private readonly regexp : RegExp | undefined ,
1514
+ ) {
1500
1515
//
1501
1516
}
1502
1517
0 commit comments