const go/token.INC

7 uses

	go/token (current package)
		token.go#L68: 	INC   // ++
		token.go#L177: 	INC:   "++",

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

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

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

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