(elementPath: ElementPath, propertyPath: PropertyPath)
| 7 | import * as EP from '../core/shared/element-path' |
| 8 | |
| 9 | export function create(elementPath: ElementPath, propertyPath: PropertyPath): ElementPropertyPath { |
| 10 | return { |
| 11 | elementPath: elementPath, |
| 12 | propertyPath: propertyPath, |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | export function pathsEqual(first: ElementPropertyPath, second: ElementPropertyPath): boolean { |
| 17 | return ( |
no outgoing calls