MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / writeNullSafeExpression

Function writeNullSafeExpression

packages/transpiler/src/AstPrinterBase.ts:244–247  ·  view source on GitHub ↗
(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

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected