const go/token.INC

6 uses

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

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

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

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