()
| 600 | } |
| 601 | |
| 602 | func (e *Env) ensureMutableFunctions() { |
| 603 | if e.funcsShared { |
| 604 | e.functions = maps.Clone(e.functions) |
| 605 | e.funcsShared = false |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | func (e *Env) ensureMutableLibraries() { |
| 610 | if e.libsShared { |
no test coverage detected