diff --git a/compiler/forget/src/HIR/HIR.ts b/compiler/forget/src/HIR/HIR.ts index ac55b84ea7..95055f8704 100644 --- a/compiler/forget/src/HIR/HIR.ts +++ b/compiler/forget/src/HIR/HIR.ts @@ -180,9 +180,18 @@ export type LValue = { }; export enum InstructionKind { - Const, // const declaration - Let, // let declaration - Reassign, // assing a new value to a let binding + /** + * const declaration + */ + Const = "Const", + /** + * let declaration + */ + Let = "Let", + /** + * assing a new value to a let binding + */ + Reassign = "Reassign", } /**