Record that we are starting an element with the given name.
(name Name)
| 448 | |
| 449 | // Record that we are starting an element with the given name. |
| 450 | func (d *Decoder) pushElement(name Name) { |
| 451 | s := d.push(stkStart) |
| 452 | s.name = name |
| 453 | } |
| 454 | |
| 455 | // Record that we are changing the value of ns[local]. |
| 456 | // The old value is url, ok. |