(records, o)
| 169 | var defined = {}; |
| 170 | |
| 171 | var attributeChangedCallback = function attributeChangedCallback(records, o) { |
| 172 | for (var h = attributes.get(o), i = 0, length = records.length; i < length; i++) { |
| 173 | var _records$i = records[i], |
| 174 | target = _records$i.target, |
| 175 | attributeName = _records$i.attributeName, |
| 176 | oldValue = _records$i.oldValue; |
| 177 | var newValue = target.getAttribute(attributeName); |
| 178 | h.attributeChanged(attributeName, oldValue, newValue); |
| 179 | } |
| 180 | }; |
| 181 | |
| 182 | var set = function set(value, m, l, o) { |
| 183 | var handler = create(o, { |
nothing calls this directly
no test coverage detected