class Sass::Embedded::Async

def await

def await
  @mutex.synchronize do
    @condition_variable.wait(@mutex) if @state == State::PENDING
    raise @error if @state == State::REJECTED
    @result
  end
end