Record that we are changing the value of ns[local]. The old value is url, ok.
(local string, url string, ok bool)
| 445 | // Record that we are changing the value of ns[local]. |
| 446 | // The old value is url, ok. |
| 447 | func (d *Decoder) pushNs(local string, url string, ok bool) { |
| 448 | s := d.push(stkNs) |
| 449 | s.name.Local = local |
| 450 | s.name.Space = url |
| 451 | s.ok = ok |
| 452 | } |
| 453 | |
| 454 | // Creates a SyntaxError with the current line number. |
| 455 | func (d *Decoder) syntaxError(msg string) error { |