Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Dec 5, 2024
1 parent ead14cb commit 40762e3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1102,9 +1102,11 @@ impl<'a, 'ctx> ClassProperties<'a, 'ctx> {
///
/// Returns:
/// * Bound Identifier: `A` -> `A === null || A === void 0`
/// * `this`: `this` -> `this === null || this === void 0`
/// * Unbound Identifier or anything else: `A.B` -> `(_A$B = A.B) === null || _A$B === void 0`
///
/// NOTE: This method will mutate the passed-in `object` to a second expression of [`Self::duplicate_object`] return.
/// NOTE: This method will mutate the passed-in `object` to a second copy of
/// [`Self::duplicate_object`]'s return.
fn transform_expression_to_wrap_nullish_check(
&mut self,
object: &mut Expression<'a>,
Expand Down

0 comments on commit 40762e3

Please sign in to comment.