const go/token.DEFINE

18 uses

	go/token (current package)
		token.go#L80: 	DEFINE   // :=
		token.go#L189: 	DEFINE:   ":=",

	go/parser
		parser.go#L1898: 		token.DEFINE, token.ASSIGN, token.ADD_ASSIGN,
		parser.go#L1907: 		if mode == rangeOk && p.tok == token.RANGE && (tok == token.DEFINE || tok == token.ASSIGN) {
		parser.go#L1916: 		if tok == token.DEFINE {
		parser.go#L2211: 			case token.DEFINE:
		parser.go#L2295: 			if tok := p.tok; tok == token.ASSIGN || tok == token.DEFINE {
		parser.go#L2306: 				if tok == token.DEFINE {
		resolver.go#L310: 		if n.Tok == token.DEFINE {
		resolver.go#L423: 			if n.Tok == token.DEFINE {
		resolver.go#L430: 					Tok:    token.DEFINE,

	go/scanner
		scanner.go#L883: 			tok = s.switch2(token.COLON, token.DEFINE)

	go/types
		labels.go#L232: 			if s.Tok == token.DEFINE {
		stmt.go#L468: 		case token.ASSIGN, token.DEFINE:
		stmt.go#L473: 			if s.Tok == token.DEFINE {
		stmt.go#L650: 			if len(guard.Lhs) != 1 || guard.Tok != token.DEFINE || len(guard.Rhs) != 1 {
		stmt.go#L813: 		if s, _ := s.Post.(*ast.AssignStmt); s != nil && s.Tok == token.DEFINE {
		stmt.go#L870: 		if s.Tok == token.DEFINE {