(ctx)
| 45 | name: 'DataSourcePlugin', |
| 46 | deps: [], |
| 47 | init(ctx) { |
| 48 | const { config } = ctx |
| 49 | |
| 50 | config.set('dataSourceEngine', { |
| 51 | createRuntime, |
| 52 | createInterpret, |
| 53 | createDataSourceEngine: (dataSource: InterpretDataSource, engine: IDataSourceRuntimeContext) => { |
| 54 | return createDataSourceEngine(dataSource, engine, options) |
| 55 | }, |
| 56 | }) |
| 57 | }, |
| 58 | extend({ extend }) { |
| 59 | extend('Project', { |
| 60 | dataSource: { |
nothing calls this directly
no test coverage detected