class Less::JavaScript::V8Context

def eval(source, options = nil) # passing options not supported

passing options not supported
def eval(source, options = nil) # passing options not supported
  source = source.encode('UTF-8') if source.respond_to?(:encode)
  lock do
    @v8_context.eval("(#{source})")
  end
end