.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / postcss-selector-parser / dist / selectors / namespace.js
1 'use strict';
2
3 exports.__esModule = true;
4
5 var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
6
7 var _node = require('./node');
8
9 var _node2 = _interopRequireDefault(_node);
10
11 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
13 function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
14
15 function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
16
17 function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
18
19 var Namespace = function (_Node) {
20     _inherits(Namespace, _Node);
21
22     function Namespace() {
23         _classCallCheck(this, Namespace);
24
25         return _possibleConstructorReturn(this, _Node.apply(this, arguments));
26     }
27
28     Namespace.prototype.qualifiedName = function qualifiedName(value) {
29         if (this.namespace) {
30             return this.namespaceString + '|' + value;
31         } else {
32             return value;
33         }
34     };
35
36     Namespace.prototype.toString = function toString() {
37         return [this.spaces.before, this.qualifiedName(this.value), this.spaces.after].join('');
38     };
39
40     _createClass(Namespace, [{
41         key: 'namespace',
42         get: function get() {
43             return this._namespace;
44         },
45         set: function set(namespace) {
46             this._namespace = namespace;
47             if (this.raws) {
48                 delete this.raws.namespace;
49             }
50         }
51     }, {
52         key: 'ns',
53         get: function get() {
54             return this._namespace;
55         },
56         set: function set(namespace) {
57             this._namespace = namespace;
58             if (this.raws) {
59                 delete this.raws.namespace;
60             }
61         }
62     }, {
63         key: 'namespaceString',
64         get: function get() {
65             if (this.namespace) {
66                 var ns = this.raws && this.raws.namespace || this.namespace;
67                 if (ns === true) {
68                     return '';
69                 } else {
70                     return ns;
71                 }
72             } else {
73                 return '';
74             }
75         }
76     }]);
77
78     return Namespace;
79 }(_node2.default);
80
81 exports.default = Namespace;
82 ;
83 module.exports = exports['default'];