class SassC::Importer::Import
Attributes
path[RW]
source[RW]
source_map_path[RW]
Public Class Methods
new(path, source: nil, source_map_path: nil)
click to toggle source
# File lib/sassc/importer.rb, line 20 def initialize(path, source: nil, source_map_path: nil) @path = path @source = source @source_map_path = source_map_path end
Public Instance Methods
to_s()
click to toggle source
# File lib/sassc/importer.rb, line 26 def to_s "Import: #{path} #{source} #{source_map_path}" end