UNPKG

@specs-feup/lara

Version:

A js port of the popular framework for building source-to-source compilers

14 lines 232 B
/** * Reprents a metric we want to extract. * */ export default class Metric { name; constructor(name) { this.name = name; } getName() { return this.name; } } //# sourceMappingURL=Metric.js.map