File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import { Store } from 'vuex'
22import { Constructor } from '../types'
33import { Element , Item , Collection , Collections } from '../data/Data'
44import { Model } from '../model/Model'
5- import { Interpreter } from '../interpreter/Interpreter'
65import { Query } from '../query/Query'
76import {
87 WherePrimaryClosure ,
@@ -26,17 +25,9 @@ export class Repository<M extends Model> {
2625 */
2726 constructor ( store : Store < any > , model : Constructor < M > ) {
2827 this . store = store
29-
3028 this . model = new model ( ) . $setStore ( store )
3129 }
3230
33- /**
34- * Create a new Interpreter instance.
35- */
36- interpreter ( ) : Interpreter < M > {
37- return new Interpreter ( this . store , this . model )
38- }
39-
4031 /**
4132 * Create a new Query instance.
4233 */
You can’t perform that action at this time.
0 commit comments