(other Value)
| 414 | } |
| 415 | |
| 416 | func (s unicodeString) SameAs(other Value) bool { |
| 417 | return s.StrictEquals(other) |
| 418 | } |
| 419 | |
| 420 | func (s unicodeString) Equals(other Value) bool { |
| 421 | if s.StrictEquals(other) { |
nothing calls this directly
no test coverage detected