MCPcopy Create free account
hub / github.com/microsoft/typescript-go / bindPostfixUnaryExpressionFlow

Method bindPostfixUnaryExpressionFlow

internal/binder/binder.go:2191–2197  ·  view source on GitHub ↗
(node *ast.Node)

Source from the content-addressed store, hash-verified

2189}
2190
2191func (b *Binder) bindPostfixUnaryExpressionFlow(node *ast.Node) {
2192 expr := node.AsPostfixUnaryExpression()
2193 b.bindEachChild(node)
2194 if expr.Operator == ast.KindPlusPlusToken || expr.Operator == ast.KindMinusMinusToken {
2195 b.bindAssignmentTargetFlow(expr.Operand)
2196 }
2197}
2198
2199func (b *Binder) bindDestructuringAssignmentFlow(node *ast.Node) {
2200 expr := node.AsBinaryExpression()

Callers 1

bindChildrenMethod · 0.95

Calls 3

bindEachChildMethod · 0.95

Tested by

no test coverage detected