NewColIdent makes a new ColIdent.
(str string)
| 3961 | |
| 3962 | // NewColIdent makes a new ColIdent. |
| 3963 | func NewColIdent(str string) ColIdent { |
| 3964 | return ColIdent{ |
| 3965 | val: str, |
| 3966 | } |
| 3967 | } |
| 3968 | |
| 3969 | // Format formats the node. |
| 3970 | func (node ColIdent) Format(buf *TrackedBuffer) { |
no outgoing calls