(accessor: string, name: string)
| 49 | } |
| 50 | |
| 51 | export function getSafePropertyAccessString(accessor: string, name: string): string { |
| 52 | const escapedName = escapeIdentifier(name, false); |
| 53 | return escapedName !== name ? `${accessor}[${escapedName}]` : `${accessor}.${name}`; |
| 54 | } |
| 55 | |
| 56 | export function prepareSyntheticListenerFunctionName(name: string, phase: string) { |
| 57 | return `animation_${name}_${phase}`; |
no test coverage detected
searching dependent graphs…