Sha256: 479ffddbc6b7a05eb68530e11fe294a9705092a0fbea3abc66a10744be67a455

Contents?: true

Size: 1.54 KB

Versions: 17

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true
module YARD
  module Parser::Ruby::Legacy
    class Statement
      attr_reader :tokens, :comments, :block
      attr_accessor :comments_range

      # @deprecated Groups are now defined by directives
      # @see Tags::GroupDirective
      attr_accessor :group

      attr_accessor :comments_hash_flag

      def initialize(tokens, block = nil, comments = nil)
        @tokens = tokens
        @block  = block
        @comments = comments
        @comments_hash_flag = false
      end

      def first_line
        to_s.split(/\n/)[0]
      end

      def to_s(include_block = true)
        tokens.map do |token|
          RubyToken::TkBlockContents === token ? (include_block ? block.to_s : '') : token.text
        end.join
      end
      alias source to_s

      def inspect
        l = line - 1
        to_s(false).split(/\n/).map do |text|
          "\t#{l += 1}:  #{text}"
        end.join("\n")
      end

      def show
        "\t#{line}: #{first_line}"
      end

      # @return [Fixnum] the first line of Ruby source
      def line
        tokens.first.line_no
      end

      # @return [Range<Fixnum>] the first to last lines of Ruby source
      # @since 0.5.4
      def line_range
        tokens.first.line_no..tokens.last.line_no
      end

      private

      def clean_tokens(tokens)
        last_tk = nil
        tokens.reject do |tk|
          tk.is_a?(RubyToken::TkNL) ||
            (last_tk.is_a?(RubyToken::TkSPACE) &&
            last_tk.class == tk.class) && last_tk = tk
        end
      end
    end
  end
end

Version data entries

17 entries across 16 versions & 4 rubygems

Version Path
yard-0.9.20 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.19 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.16 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.15 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.14 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.13 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.12 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.11 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.10 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.9 lib/yard/parser/ruby/legacy/statement.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.4.0/gems/yard-0.9.8/lib/yard/parser/ruby/legacy/statement.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.2.0/gems/yard-0.9.8/lib/yard/parser/ruby/legacy/statement.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/yard-0.9.8/lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.8 lib/yard/parser/ruby/legacy/statement.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.7/lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.7 lib/yard/parser/ruby/legacy/statement.rb
yard-0.9.6 lib/yard/parser/ruby/legacy/statement.rb