grading
Version:
Grading of student submissions, in particular programming tests.
13 lines • 345 B
JavaScript
/**
* Interfaces representing Jest's coverage report in clover format.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Type = void 0;
var Type;
(function (Type) {
Type["Cond"] = "cond";
Type["Stmt"] = "stmt";
})(Type = exports.Type || (exports.Type = {}));
;
//# sourceMappingURL=coverage.js.map
;