class Sass::Embedded::Async

def initialize

def initialize
  @error = nil
  @result = nil
  @state = State::PENDING
  @condition_variable = ConditionVariable.new
  @mutex = Mutex.new
  begin
    yield if block_given?
  rescue StandardError => e
    reject e
  end
end