* Get a unique storage name for a (Polymer component, propertyName) tuple. * * DISAMBIGUATOR must be set on the component, if other components use the * same propertyName.
(component: {}, propertyName: string)
| 258 | * same propertyName. |
| 259 | */ |
| 260 | function getURIStorageName(component: {}, propertyName: string): string { |
| 261 | const d = component[DISAMBIGUATOR]; |
| 262 | const components = d == null ? [propertyName] : [d, propertyName]; |
| 263 | return components.join('.'); |
| 264 | } |
no test coverage detected
searching dependent graphs…