File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
- extract ` generateConceptSet `
2
-
3
1
` QuotientSet.union `
4
2
` QuotientSet.intersection `
5
3
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export function generateAttributeConceptSet(
34
34
return conceptSet
35
35
}
36
36
37
- export function generateConcepts ( context : Context ) : Array < Concept > {
37
+ export function generateConceptSet ( context : Context ) : QuotientSet < Concept > {
38
38
const targets = generateEntityConceptSet ( context )
39
39
const results = createConceptSet ( )
40
40
@@ -65,5 +65,9 @@ export function generateConcepts(context: Context): Array<Concept> {
65
65
}
66
66
}
67
67
68
- return results . representatives
68
+ return results
69
+ }
70
+
71
+ export function generateConcepts ( context : Context ) : Array < Concept > {
72
+ return generateConceptSet ( context ) . representatives
69
73
}
You can’t perform that action at this time.
0 commit comments