Function
writeNullSafeExpression
(expr: cs.NullSafeExpression)
Source from the content-addressed store, hash-verified
| 242 | protected abstract escapeIdentifier(identifier: string): string; |
| 243 | |
| 244 | protected writeNullSafeExpression(expr: cs.NullSafeExpression) { |
| 245 | this.writeExpression(expr.expression); |
| 246 | this.write('?'); |
| 247 | } |
| 248 | |
| 249 | protected writeInvocationExpression(expr: cs.InvocationExpression) { |
| 250 | this.writeExpression(expr.expression); |
Callers
nothing calls this directly
Tested by
no test coverage detected