mirror of
https://github.com/golang/go
synced 2024-11-11 17:21:38 -07:00
go/ast: note that in BasicLit CHARs and STRINGs are quoted
This reapplies CL 244960, for some reason CL 264181 removed this comment. Updates #39590
This commit is contained in:
parent
6edc1c23ed
commit
e2e0e551dd
@ -299,6 +299,12 @@ type (
|
||||
}
|
||||
|
||||
// A BasicLit node represents a literal of basic type.
|
||||
//
|
||||
// Note that for the CHAR and STRING kinds, the literal is stored
|
||||
// with its quotes. For example, for a double-quoted STRING, the
|
||||
// first and the last rune in the Value field will be ". The
|
||||
// Unquote and UnquoteChar functions in the strconv package can be
|
||||
// used to unquote STRING and CHAR values, respectively.
|
||||
BasicLit struct {
|
||||
ValuePos token.Pos // literal position
|
||||
Kind token.Token // token.INT, token.FLOAT, token.IMAG, token.CHAR, or token.STRING
|
||||
|
Loading…
Reference in New Issue
Block a user