(token Kind)
| 110 | } |
| 111 | |
| 112 | func IsCompoundAssignment(token Kind) bool { |
| 113 | return token >= KindFirstCompoundAssignment && token <= KindLastCompoundAssignment |
| 114 | } |
| 115 | |
| 116 | func IsAssignmentExpression(node *Node, excludeCompoundAssignment bool) bool { |
| 117 | if node.Kind == KindBinaryExpression { |
no outgoing calls
no test coverage detected