@@ -15,37 +15,28 @@ export class Converter {
15
15
* @param {object } options - The options to use.
16
16
* @param {object } options.strategy - The conversion strategy to use,
17
17
* e.g., a compressor or decompressor.
18
- * @param {Map } options.typeTable - A map of possible value types, including
19
- * `context`, `url`, `none`, and any JSON-LD type, each of which maps to
20
- * another map of values of that type to their associated CBOR-LD integer
21
- * values.
22
18
* @param {documentLoaderFunction } options.documentLoader -The document
23
19
* loader to use when resolving JSON-LD Context URLs.
24
20
* @param {boolean } [options.legacy=false] - True if legacy mode is in
25
21
* effect, false if not.
26
22
*/
27
23
constructor ( {
28
- strategy, typeTable , documentLoader, legacy = false
24
+ strategy, documentLoader, legacy = false
29
25
} = { } ) {
30
26
this . strategy = strategy ;
31
- // FIXME: use strategy.typeTable
32
- this . typeTable = typeTable ;
33
27
this . legacy = legacy ;
28
+ const contextLoader = new ContextLoader ( {
29
+ documentLoader, buildReverseMap : ! ! strategy . reverseTypeTable
30
+ } ) ;
31
+ this . contextLoader = contextLoader ;
32
+ this . initialActiveCtx = new ActiveContext ( { contextLoader} ) ;
34
33
35
34
// FIXME: expose differently
36
- this . typeTableEncodedAsBytes = legacy ?
35
+ this . typeTableEncodedAsBytesSet = legacy ?
37
36
LEGACY_TYPE_TABLE_ENCODED_AS_BYTES : TYPE_TABLE_ENCODED_AS_BYTES ;
38
37
39
38
// FIXME: eliminate cyclical reference
40
39
strategy . converter = this ;
41
- // FIXME: expose differently
42
- this . reverseTypeTable = strategy . reverseTypeTable ;
43
-
44
- const contextLoader = new ContextLoader ( {
45
- documentLoader, buildReverseMap : ! ! this . reverseTypeTable
46
- } ) ;
47
- this . contextLoader = contextLoader ;
48
- this . initialActiveCtx = new ActiveContext ( { contextLoader} ) ;
49
40
}
50
41
51
42
/**
@@ -204,8 +195,6 @@ export class Converter {
204
195
}
205
196
}
206
197
207
- // FIXME: determine if necessary
208
-
209
198
/**
210
199
* Fetches a resource given a URL and returns it as a string.
211
200
*
0 commit comments