(currentPath: string, prop: string)
| 82 | * Build method path from current traversal |
| 83 | */ |
| 84 | export function buildMethodPath(currentPath: string, prop: string): string { |
| 85 | return currentPath ? `${currentPath}.${prop}` : prop; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Set token usage attributes |
no outgoing calls
no test coverage detected