mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 18:29:29 +08:00
14 lines
No EOL
596 B
Text
14 lines
No EOL
596 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.CatchClauseDefinition = void 0;
|
|
const DefinitionType_1 = require("./DefinitionType");
|
|
const DefinitionBase_1 = require("./DefinitionBase");
|
|
class CatchClauseDefinition extends DefinitionBase_1.DefinitionBase {
|
|
constructor(name, node) {
|
|
super(DefinitionType_1.DefinitionType.CatchClause, name, node, null);
|
|
this.isTypeDefinition = false;
|
|
this.isVariableDefinition = true;
|
|
}
|
|
}
|
|
exports.CatchClauseDefinition = CatchClauseDefinition;
|
|
//# sourceMappingURL=CatchClauseDefinition.js.map |