|
|
|
@ -14,7 +14,6 @@ export interface BlockOptions {
|
|
|
|
|
comment?: string;
|
|
|
|
|
key?: string;
|
|
|
|
|
contexts?: Map<string, string>;
|
|
|
|
|
contextTypes?: Map<string, string>;
|
|
|
|
|
indexes?: Map<string, string>;
|
|
|
|
|
changeableIndexes?: Map<string, boolean>;
|
|
|
|
|
indexNames?: Map<string, string>;
|
|
|
|
@ -34,7 +33,6 @@ export default class Block {
|
|
|
|
|
first: string;
|
|
|
|
|
|
|
|
|
|
contexts: Map<string, string>;
|
|
|
|
|
contextTypes: Map<string, string>;
|
|
|
|
|
indexes: Map<string, string>;
|
|
|
|
|
changeableIndexes: Map<string, boolean>;
|
|
|
|
|
dependencies: Set<string>;
|
|
|
|
@ -79,7 +77,6 @@ export default class Block {
|
|
|
|
|
this.first = null;
|
|
|
|
|
|
|
|
|
|
this.contexts = options.contexts;
|
|
|
|
|
this.contextTypes = options.contextTypes;
|
|
|
|
|
this.indexes = options.indexes;
|
|
|
|
|
this.changeableIndexes = options.changeableIndexes;
|
|
|
|
|
this.dependencies = new Set();
|
|
|
|
|