Sha256: 88cddb89d8663bc53802ca2b72279b7d7d57c79387a30010e5dd665128e6f25b
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true require "forwardable" module Openapi3Parser module Node # An array within a OpenAPI document. # Very similar to a normal Ruby array, however this is read only and knows # the context of where it sits in an OpenAPI document # # The contents of the data will be dependent on where this document is in # the document hierachy. class Array extend Forwardable include Enumerable def_delegators :node_data, :each, :[], :empty? attr_reader :node_data, :node_context # @param [::Array] data data used to populate this node # @param [Context] context The context of this node in the document def initialize(data, context) @node_data = data @node_context = context end # Used to access a node relative to this node # @param [Context::Pointer, ::Array, ::String] pointer_like # @return anything def node_at(pointer_like) current_pointer = node_context.document_location.pointer node_context.document.node_at(pointer_like, current_pointer) end # @return [String] def inspect fragment = node_context.document_location.pointer.fragment %{#{self.class.name}(#{fragment})} end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openapi3_parser-0.5.2 | lib/openapi3_parser/node/array.rb |