const go/token.INC

7 uses

	go/token (current package)
		token.go#L67: 	INC   // ++
		token.go#L176: 	INC:   "++",

	go/parser
		parser.go#L1973: 	case token.INC, token.DEC:

	go/printer
		printer.go#L982: 				token.INC, token.DEC, token.RPAREN, token.RBRACK, token.RBRACE:

	go/scanner
		scanner.go#L882: 			tok = s.switch3(token.ADD, token.ADD_ASSIGN, '+', token.INC)
		scanner.go#L883: 			if tok == token.INC {

	go/types
		stmt.go#L488: 		case token.INC: