(records, o)
| 11 | const defined = {}; |
| 12 | |
| 13 | const attributeChangedCallback = (records, o) => { |
| 14 | for (let h = attributes.get(o), i = 0, {length} = records; i < length; i++) { |
| 15 | const {target, attributeName, oldValue} = records[i]; |
| 16 | const newValue = target.getAttribute(attributeName); |
| 17 | h.attributeChanged(attributeName, oldValue, newValue); |
| 18 | } |
| 19 | }; |
| 20 | |
| 21 | const set = (value, m, l, o) => { |
| 22 | const handler = create(o, {element: {enumerable: true, value}}); |
nothing calls this directly
no test coverage detected