String constructs a string constant.
(str string)
| 301 | |
| 302 | // String constructs a string constant. |
| 303 | func String(str string) Constant { |
| 304 | return Constant{StringType, str, int64(hashBytes([]byte(str))), nil, nil} |
| 305 | } |
| 306 | |
| 307 | // Bytes constructs a byte string constant. |
| 308 | func Bytes(bytes []byte) Constant { |