Skip to content

Commit 263ce6e

Browse files
authored
fix(es/helpers): Fix metadata of decorators being undefined (#8768)
1 parent b798632 commit 263ce6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/helpers/esm/_apply_decs_2203_r.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentCla
4747
kindStr = "field";
4848
}
4949

50-
var ctx = { kind: kindStr, name: isPrivate ? "#" + name : name, static: isStatic, private: isPrivate };
50+
var ctx = { kind: kindStr, name: isPrivate ? "#" + name : name, static: isStatic, private: isPrivate, metadata: metadata };
5151

5252
var decoratorFinishedRef = { v: false };
5353

0 commit comments

Comments
 (0)