From fbb709e00dc57af5f965ff8decb1ee549de02a1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Somhairle=20MacLe=C3=B2id?= Date: Mon, 30 Sep 2024 18:22:47 +0100 Subject: [PATCH] Fix type params (#2754) --- src/workerd/tools/param-names-ast.c++ | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/workerd/tools/param-names-ast.c++ b/src/workerd/tools/param-names-ast.c++ index e70ee53daddb..921169023cd6 100644 --- a/src/workerd/tools/param-names-ast.c++ +++ b/src/workerd/tools/param-names-ast.c++ @@ -4,6 +4,7 @@ // This file includes all Worker APIs, and is used to generate a Clang AST dump for later // lookup of parameter names for inclusion in the TS types (since RTTI doesn't include this information) +// It must be kept up to date with the APIs exposed in src/workerd/api/rtti.c++ #include #include #include @@ -16,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -23,6 +25,12 @@ #include #include #include +#include #include #include +#include +#include #include +#include +#include +#include