(
normalizedDomain: string,
scope: NormalizedScope,
properties: PropertyDefinition[]
)
| 448 | } |
| 449 | |
| 450 | private resolveScopedProperties( |
| 451 | normalizedDomain: string, |
| 452 | scope: NormalizedScope, |
| 453 | properties: PropertyDefinition[] |
| 454 | ): PropertyDefinition[] { |
| 455 | return properties.filter((property) => this.propertyMatchesScope(property, normalizedDomain, scope)); |
| 456 | } |
| 457 | |
| 458 | private propertyMatchesScope( |
| 459 | property: PropertyDefinition, |
no test coverage detected