Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/CoderLine/alphaTab
/ writeNullLiteral
Function
writeNullLiteral
packages/transpiler/src/AstPrinterBase.ts:282–284 ·
view source on GitHub ↗
(_expr: cs.NullLiteral)
Source
from the content-addressed store, hash-verified
280
}
281
282
protected writeNullLiteral(_expr: cs.NullLiteral) {
283
this.write(
'null'
);
284
}
285
286
protected writeBooleanLiteral(expr: cs.BooleanLiteral) {
287
this.write(cs.isTrueLiteral(expr) ?
'true'
:
'false'
);
Callers
nothing calls this directly
Calls
1
write
Method · 0.65
Tested by
no test coverage detected