(name)
| 9790 | return this._records.has(name); |
| 9791 | } |
| 9792 | get_record(name) { |
| 9793 | if (!this.has_record(name)) { |
| 9794 | throw new python.Error(`Record '${name}' not found.`); |
| 9795 | } |
| 9796 | return this._records.get(name); |
| 9797 | } |
| 9798 | get_all_records() { |
| 9799 | return Array.from(this._records.keys()); |
| 9800 | } |
no test coverage detected