Files
memecoin-botV2/.pnpm-store/v10/files/92/8ed28cac3d08b2a2e584b03dc82b6cffc7a3a6537c163458597ef80e1e5e652462c5ed1f2b439acd9d3a5ce50a1001b1d7d9429f5c2da9c38b5d81a797fb6a

14 lines
584 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImplicitGlobalVariableDefinition = void 0;
const DefinitionBase_1 = require("./DefinitionBase");
const DefinitionType_1 = require("./DefinitionType");
class ImplicitGlobalVariableDefinition extends DefinitionBase_1.DefinitionBase {
isTypeDefinition = false;
isVariableDefinition = true;
constructor(name, node) {
super(DefinitionType_1.DefinitionType.ImplicitGlobalVariable, name, node, null);
}
}
exports.ImplicitGlobalVariableDefinition = ImplicitGlobalVariableDefinition;