Sha256: 18b7ce06f2d706c3be480e87ecb0de61360f2d1239ed0daa885b1e1c898f65c8

Contents?: true

Size: 1.36 KB

Versions: 7

Compression:

Stored size: 1.36 KB

Contents

# frozen_string_literal: true
module Opal
  # A fragment holds a string of generated javascript that will be written
  # to the destination. It also keeps hold of the original sexp from which
  # it was generated. Using this sexp, when writing fragments in order, a
  # mapping can be created of the original location => target location,
  # aka, source-maps!
  #
  # These are generated by nodes, so will not have to create directly.
  class Fragment
    # String of javascript this fragment holds
    # @return [String]
    attr_reader :code

    # Create fragment with javascript code and optional original [Opal::Sexp].
    #
    # @param code [String] javascript code
    # @param sexp [Opal::Sexp] sexp used for creating fragment
    def initialize(code, scope, sexp = nil)
      @code = code.to_s
      @sexp = sexp
      @scope = scope
    end

    # Inspect the contents of this fragment, f("fooo")
    def inspect
      "f(#{@code.inspect})"
    end

    def source_map_name
      return nil unless @scope
      def_node = @scope.def? ? @scope : @scope.find_parent_def
      def_node && def_node.mid
    end

    # Original line this fragment was created from
    # @return [Integer, nil]
    def line
      @sexp.line if @sexp
    end

    # Original column this fragment was created from
    # @return [Integer, nil]
    def column
      @sexp.column if @sexp
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
opal-0.11.4 lib/opal/fragment.rb
opal-0.11.3 lib/opal/fragment.rb
opal-0.11.2 lib/opal/fragment.rb
opal-0.11.1 lib/opal/fragment.rb
opal-0.11.1.pre lib/opal/fragment.rb
opal-0.11.0 lib/opal/fragment.rb
opal-0.11.0.rc1 lib/opal/fragment.rb