MCPcopy Create free account
hub / github.com/z7zmey/php-parser / printExprBooleanNot

Method printExprBooleanNot

printer/printer.go:1382–1388  ·  view source on GitHub ↗
(n node.Node)

Source from the content-addressed store, hash-verified

1380}
1381
1382func (p *Printer) printExprBooleanNot(n node.Node) {
1383 nn := n.(*expr.BooleanNot)
1384 p.printFreeFloating(nn, freefloating.Start)
1385 io.WriteString(p.w, "!")
1386 p.Print(nn.Expr)
1387 p.printFreeFloating(nn, freefloating.End)
1388}
1389
1390func (p *Printer) printExprClassConstFetch(n node.Node) {
1391 nn := n.(*expr.ClassConstFetch)

Callers 1

printNodeMethod · 0.95

Calls 2

printFreeFloatingMethod · 0.95
PrintMethod · 0.95

Tested by

no test coverage detected