Record that we are starting an element with the given name.
(name Name)
| 438 | |
| 439 | // Record that we are starting an element with the given name. |
| 440 | func (d *Decoder) pushElement(name Name) { |
| 441 | s := d.push(stkStart) |
| 442 | s.name = name |
| 443 | } |
| 444 | |
| 445 | // Record that we are changing the value of ns[local]. |
| 446 | // The old value is url, ok. |