We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4457888 commit 1ddc9deCopy full SHA for 1ddc9de
crates/next-custom-transforms/src/transforms/server_actions.rs
@@ -249,7 +249,11 @@ struct ServerActions<C: Comments> {
249
annotations: Vec<Stmt>,
250
extra_items: Vec<ModuleItem>,
251
hoisted_extra_items: Vec<ModuleItem>,
252
+
253
+ // A map of all server references (inline + exported): export_name -> reference_id
254
reference_ids_by_export_name: FxIndexMap<Atom, Atom>,
255
256
+ // A list of server references for originally exported server functions only.
257
server_reference_exports: Vec<ServerReferenceExport>,
258
259
private_ctxt: SyntaxContext,
0 commit comments