MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clean up uv.h includes

+2 -3
+1
include/reactor.h
··· 2 2 #define REACTOR_H 3 3 4 4 #include "types.h" 5 + #include <uv.h> 5 6 6 7 typedef enum { 7 8 WORK_MICROTASKS = 1 << 0,
+1 -3
src/reactor.c
··· 1 - #include <internal.h> 2 - #include <uv.h> 3 - 4 1 #include "gc.h" 5 2 #include "sugar.h" 6 3 #include "reactor.h" 4 + #include "internal.h" // IWYU pragma: keep 7 5 8 6 #include "modules/fs.h" 9 7 #include "modules/timer.h"