Skip to content

Commit e67a11e

Browse files
committed
chore: update ast gen
1 parent c2e09c9 commit e67a11e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/oxc_ast/src/generated/ast_builder.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ impl<'a> AstBuilder<'a> {
378378
/// * `body`: See `expression` for whether this arrow expression returns an expression.
379379
/// * `scope_id`
380380
/// * `pure`: `true` if the function is marked with a `/*#__NO_SIDE_EFFECTS__*/` comment
381-
/// * `pife`
381+
/// * `pife`: `true` if the function should be marked as "Possibly-Invoked Function Expression" (PIFE).
382382
#[inline]
383383
pub fn expression_arrow_function_with_scope_id_and_pure_and_pife<T1, T2, T3, T4>(
384384
self,
@@ -6133,7 +6133,7 @@ impl<'a> AstBuilder<'a> {
61336133
/// * `body`: See `expression` for whether this arrow expression returns an expression.
61346134
/// * `scope_id`
61356135
/// * `pure`: `true` if the function is marked with a `/*#__NO_SIDE_EFFECTS__*/` comment
6136-
/// * `pife`
6136+
/// * `pife`: `true` if the function should be marked as "Possibly-Invoked Function Expression" (PIFE).
61376137
#[inline]
61386138
pub fn arrow_function_expression_with_scope_id_and_pure_and_pife<T1, T2, T3, T4>(
61396139
self,
@@ -6183,7 +6183,7 @@ impl<'a> AstBuilder<'a> {
61836183
/// * `body`: See `expression` for whether this arrow expression returns an expression.
61846184
/// * `scope_id`
61856185
/// * `pure`: `true` if the function is marked with a `/*#__NO_SIDE_EFFECTS__*/` comment
6186-
/// * `pife`
6186+
/// * `pife`: `true` if the function should be marked as "Possibly-Invoked Function Expression" (PIFE).
61876187
#[inline]
61886188
pub fn alloc_arrow_function_expression_with_scope_id_and_pure_and_pife<T1, T2, T3, T4>(
61896189
self,

0 commit comments

Comments
 (0)