definition-tester
Version:
DefinitelyTyped repository testing infrastructure
17 lines • 734 B
JavaScript
;
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var TestSuiteBase_1 = require('../suite/TestSuiteBase');
var SyntaxChecking = (function (_super) {
__extends(SyntaxChecking, _super);
function SyntaxChecking(options) {
_super.call(this, options, 'Syntax checking', 'Syntax error');
}
return SyntaxChecking;
}(TestSuiteBase_1.default));
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = SyntaxChecking;
//# sourceMappingURL=SyntaxSuite.js.map