Record that we are changing the value of ns[local]. The old value is url, ok.
(local string, url string, ok bool)
| 455 | // Record that we are changing the value of ns[local]. |
| 456 | // The old value is url, ok. |
| 457 | func (d *Decoder) pushNs(local string, url string, ok bool) { |
| 458 | s := d.push(stkNs) |
| 459 | s.name.Local = local |
| 460 | s.name.Space = url |
| 461 | s.ok = ok |
| 462 | } |
| 463 | |
| 464 | // Creates a SyntaxError with the current line number. |
| 465 | func (d *Decoder) syntaxError(msg string) error { |