()
| 66 | export abstract class ContextKeyExpr { |
| 67 | |
| 68 | public static false(): ContextKeyExpression { |
| 69 | return ContextKeyFalseExpr.INSTANCE; |
| 70 | } |
| 71 | |
| 72 | public static true(): ContextKeyExpression { |
| 73 | return ContextKeyTrueExpr.INSTANCE; |
nothing calls this directly
no outgoing calls
no test coverage detected