|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
989 bytes
|
| Line | |
|---|
| 1 | "use strict";
|
|---|
| 2 |
|
|---|
| 3 | exports.__esModule = true;
|
|---|
| 4 | exports["default"] = void 0;
|
|---|
| 5 | var _node = _interopRequireDefault(require("./node"));
|
|---|
| 6 | var _types = require("./types");
|
|---|
| 7 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|---|
| 8 | function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
|
|---|
| 9 | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|---|
| 10 | var Combinator = /*#__PURE__*/function (_Node) {
|
|---|
| 11 | _inheritsLoose(Combinator, _Node);
|
|---|
| 12 | function Combinator(opts) {
|
|---|
| 13 | var _this;
|
|---|
| 14 | _this = _Node.call(this, opts) || this;
|
|---|
| 15 | _this.type = _types.COMBINATOR;
|
|---|
| 16 | return _this;
|
|---|
| 17 | }
|
|---|
| 18 | return Combinator;
|
|---|
| 19 | }(_node["default"]);
|
|---|
| 20 | exports["default"] = Combinator;
|
|---|
| 21 | module.exports = exports.default; |
|---|
Note:
See
TracBrowser
for help on using the repository browser.