#ifndef CUSTOM_FUNCTION_BRIDGE_H #define CUSTOM_FUNCTION_BRIDGE_H #include #include #include #include "callback_bridge.h" class CustomFunctionBridge : public CallbackBridge { public: CustomFunctionBridge(v8::Local cb, bool is_sync) : CallbackBridge(cb, is_sync) {} private: Sass_Value* post_process_return_value(v8::Local) const; std::vector> pre_process_args(std::vector) const; }; #endif