Method: Sass::Script::Tree::StringInterpolation#initialize
- Defined in:
- lib/sass/script/tree/string_interpolation.rb
#initialize(before, mid, after) ⇒ StringInterpolation
Interpolation in a string is of the form "before #{mid} after",
where before and after may include more interpolation.
39 40 41 42 43 |
# File 'lib/sass/script/tree/string_interpolation.rb', line 39
def initialize(before, mid, after)
@before = before
@mid = mid
@after = after
end
|