@@ -31,12 +31,9 @@ export class Converter {
31
31
this . contextLoader = contextLoader ;
32
32
this . initialActiveCtx = new ActiveContext ( { contextLoader} ) ;
33
33
34
- // FIXME: expose differently
34
+ // FIXME: consider moving to strategies for better separation of concerns
35
35
this . typeTableEncodedAsBytesSet = legacy ?
36
36
LEGACY_TYPE_TABLE_ENCODED_AS_BYTES : TYPE_TABLE_ENCODED_AS_BYTES ;
37
-
38
- // FIXME: eliminate cyclical reference
39
- strategy . converter = this ;
40
37
}
41
38
42
39
/**
@@ -137,7 +134,9 @@ export class Converter {
137
134
activeCtx = await strategy . convertContexts ( { activeCtx, input, output} ) ;
138
135
139
136
// get unique `@type` (and alias) values for the input
140
- const objectTypes = strategy . getObjectTypes ( { activeCtx, input, output} ) ;
137
+ const objectTypes = strategy . getObjectTypes ( {
138
+ activeCtx, input, output, converter : this
139
+ } ) ;
141
140
142
141
// apply type-scoped contexts
143
142
activeCtx = await activeCtx . applyTypeScopedContexts ( { objectTypes} ) ;
@@ -173,7 +172,9 @@ export class Converter {
173
172
return null ;
174
173
}
175
174
// convert value via strategy if possible
176
- let output = this . strategy . convertValue ( { termType, value, termInfo} ) ;
175
+ let output = this . strategy . convertValue ( {
176
+ termType, value, termInfo, converter : this
177
+ } ) ;
177
178
if ( output !== undefined ) {
178
179
return output ;
179
180
}
0 commit comments