Class: Sasso::CompileResult
- Inherits:
-
Struct
- Object
- Struct
- Sasso::CompileResult
- Defined in:
- lib/sasso.rb
Overview
Returned by compile_string/compile when source_map: true. #css is the
CSS String (identical to the plain-String return); #source_map is the
Source Map v3 as a parsed Hash ("version" => 3, "mappings", "sources", …).
Instance Attribute Summary collapse
-
#css ⇒ Object
Returns the value of attribute css.
-
#source_map ⇒ Object
Returns the value of attribute source_map.
Instance Attribute Details
#css ⇒ Object
Returns the value of attribute css
18 19 20 |
# File 'lib/sasso.rb', line 18 def css @css end |
#source_map ⇒ Object
Returns the value of attribute source_map
18 19 20 |
# File 'lib/sasso.rb', line 18 def source_map @source_map end |