UNPKG

@sap/cds-compiler

Version:

CDS (Core Data Services) compiler and backends

15 lines (11 loc) 413 B
// cds-compiler Inspect Module // Used by `cdsc inspect` to gather details about the model such as statistics, etc. 'use strict'; const { inspectModelStatistics } = require('./inspectModelStatistics'); const { inspectPropagation } = require('./inspectPropagation'); const { stringRefToPath } = require('./inspectUtils'); module.exports = { inspectModelStatistics, inspectPropagation, stringRefToPath, };