DeleteProperty deletes the property with the given key.
(key string)
| 418 | |
| 419 | // DeleteProperty deletes the property with the given key. |
| 420 | func (n *NodeBase) DeleteProperty(key string) { |
| 421 | if n.Properties == nil { |
| 422 | return |
| 423 | } |
| 424 | delete(n.Properties, key) |
| 425 | } |
| 426 | |
| 427 | // Tree Walking: |
| 428 |
no outgoing calls