import _classCallCheck from "@babel/runtime/helpers/classCallCheck"; import _createClass from "@babel/runtime/helpers/createClass"; import _get from "@babel/runtime/helpers/get"; import _inherits from "@babel/runtime/helpers/inherits"; import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn"; import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf"; function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } import { Type } from '../constants'; import { YAMLSemanticError } from '../errors'; import { BlankLine } from './BlankLine'; import { Node } from './Node'; import { Range } from './Range'; export var CollectionItem = /*#__PURE__*/function (_Node) { _inherits(CollectionItem, _Node); var _super = _createSuper(CollectionItem); function CollectionItem(type, props) { var _this; _classCallCheck(this, CollectionItem); _this = _super.call(this, type, props); _this.node = null; return _this; } _createClass(CollectionItem, [{ key: "parse", /** * @param {ParseContext} context * @param {number} start - Index of first character * @returns {number} - Index of the character after this */ value: function parse(context, start) { this.context = context; var parseNode = context.parseNode, src = context.src; var atLineStart = context.atLineStart, lineStart = context.lineStart; if (!atLineStart && this.type === Type.SEQ_ITEM) this.error = new YAMLSemanticError(this, 'Sequence items must not have preceding content on the same line'); var indent = atLineStart ? start - lineStart : context.indent; var offset = Node.endOfWhiteSpace(src, start + 1); var ch = src[offset]; var inlineComment = ch === '#'; var comments = []; var blankLine = null; while (ch === '\n' || ch === '#') { if (ch === '#') { var _end = Node.endOfLine(src, offset + 1); comments.push(new Range(offset, _end)); offset = _end; } else { atLineStart = true; lineStart = offset + 1; var wsEnd = Node.endOfWhiteSpace(src, lineStart); if (src[wsEnd] === '\n' && comments.length === 0) { blankLine = new BlankLine(); lineStart = blankLine.parse({ src: src }, lineStart); } offset = Node.endOfIndent(src, lineStart); } ch = src[offset]; } if (Node.nextNodeIsIndented(ch, offset - (lineStart + indent), this.type !== Type.SEQ_ITEM)) { this.node = parseNode({ atLineStart: atLineStart, inCollection: false, indent: indent, lineStart: lineStart, parent: this }, offset); } else if (ch && lineStart > start + 1) { offset = lineStart - 1; } if (this.node) { if (blankLine) { // Only blank lines preceding non-empty nodes are captured. Note that // this means that collection item range start indices do not always // increase monotonically. -- eemeli/yaml#126 var items = context.parent.items || context.parent.contents; if (items) items.push(blankLine); } if (comments.length) Array.prototype.push.apply(this.props, comments); offset = this.node.range.end; } else { if (inlineComment) { var c = comments[0]; this.props.push(c); offset = c.end; } else { offset = Node.endOfLine(src, start + 1); } } var end = this.node ? this.node.valueRange.end : offset; this.valueRange = new Range(start, end); return offset; } }, { key: "setOrigRanges", value: function setOrigRanges(cr, offset) { offset = _get(_getPrototypeOf(CollectionItem.prototype), "setOrigRanges", this).call(this, cr, offset); return this.node ? this.node.setOrigRanges(cr, offset) : offset; } }, { key: "toString", value: function toString() { var src = this.context.src, node = this.node, range = this.range, value = this.value; if (value != null) return value; var str = node ? src.slice(range.start, node.range.start) + String(node) : src.slice(range.start, range.end); return Node.addStringTerminator(src, range.end, str); } }, { key: "includesTrailingLines", get: function get() { return !!this.node && this.node.includesTrailingLines; } }]); return CollectionItem; }(Node);