| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- if (typeof b !== "function" && b !== null)
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- var cssesc_1 = __importDefault(require("cssesc"));
- var util_1 = require("../util");
- var node_1 = __importDefault(require("./node"));
- var types_1 = require("./types");
- var ClassName = /** @class */ (function (_super) {
- __extends(ClassName, _super);
- function ClassName(opts) {
- var _this = _super.call(this, opts) || this;
- _this.type = types_1.CLASS;
- _this._constructed = true;
- return _this;
- }
- Object.defineProperty(ClassName.prototype, "value", {
- get: function () {
- return this._value;
- },
- set: function (v) {
- if (this._constructed) {
- var escaped = (0, cssesc_1.default)(v, { isIdentifier: true });
- if (escaped !== v) {
- (0, util_1.ensureObject)(this, "raws");
- this.raws.value = escaped;
- }
- else if (this.raws) {
- delete this.raws.value;
- }
- }
- this._value = v;
- },
- enumerable: false,
- configurable: true
- });
- ClassName.prototype.valueToString = function () {
- return "." + _super.prototype.valueToString.call(this);
- };
- return ClassName;
- }(node_1.default));
- exports.default = ClassName;
- //# sourceMappingURL=className.js.map
|