IsEmpty returns true if the name is empty.
()
| 3188 | |
| 3189 | // IsEmpty returns true if the name is empty. |
| 3190 | func (n Ident) IsEmpty() bool { |
| 3191 | return n.Name == "" |
| 3192 | } |
| 3193 | |
| 3194 | // Format formats the node for SQL generation. |
| 3195 | func (n Ident) Format(buf *nodeBuffer) { |
no outgoing calls
no test coverage detected