mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* oooooh magic * stuff * run format * ok * yippee * run the formatter back * finish things up * fix webkit * more * [autofix.ci] apply automated fixes * fix compile * fix compilation on windows, it seems to not work though :( * update * a * v * ok * [autofix.ci] apply automated fixes * OOPS * bump bun to reduce ci bugs * a * js2native is done! * improve array binding * rebase * some final stuff * wasi fixes * os --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
13 lines
270 B
C++
13 lines
270 B
C++
#include "config.h"
|
|
#include <wtf/PlatformCallingConventions.h>
|
|
|
|
namespace Bun {
|
|
namespace JS2Native {
|
|
|
|
JSC_DECLARE_HOST_FUNCTION(jsDollarLazy);
|
|
|
|
JSC_DECLARE_HOST_FUNCTION(jsDollarCpp);
|
|
JSC_DECLARE_HOST_FUNCTION(jsDollarZig);
|
|
|
|
} // namespace JS2Native
|
|
} // namespace Bun
|