@@ -846,17 +846,17 @@ impl<'a> AstBuilder<'a> {
846846 /// ## Parameters
847847 /// * `span`: The [`Span`] covering this node
848848 /// * `source`
849- /// * `arguments `
849+ /// * `options `
850850 /// * `phase`
851851 #[ inline]
852852 pub fn expression_import (
853853 self ,
854854 span : Span ,
855855 source : Expression < ' a > ,
856- arguments : Vec < ' a , Expression < ' a > > ,
856+ options : Vec < ' a , Expression < ' a > > ,
857857 phase : Option < ImportPhase > ,
858858 ) -> Expression < ' a > {
859- Expression :: ImportExpression ( self . alloc_import_expression ( span, source, arguments , phase) )
859+ Expression :: ImportExpression ( self . alloc_import_expression ( span, source, options , phase) )
860860 }
861861
862862 /// Build an [`Expression::LogicalExpression`].
@@ -7461,17 +7461,17 @@ impl<'a> AstBuilder<'a> {
74617461 /// ## Parameters
74627462 /// * `span`: The [`Span`] covering this node
74637463 /// * `source`
7464- /// * `arguments `
7464+ /// * `options `
74657465 /// * `phase`
74667466 #[ inline]
74677467 pub fn import_expression (
74687468 self ,
74697469 span : Span ,
74707470 source : Expression < ' a > ,
7471- arguments : Vec < ' a , Expression < ' a > > ,
7471+ options : Vec < ' a , Expression < ' a > > ,
74727472 phase : Option < ImportPhase > ,
74737473 ) -> ImportExpression < ' a > {
7474- ImportExpression { span, source, arguments , phase }
7474+ ImportExpression { span, source, options , phase }
74757475 }
74767476
74777477 /// Build an [`ImportExpression`], and store it in the memory arena.
@@ -7481,17 +7481,17 @@ impl<'a> AstBuilder<'a> {
74817481 /// ## Parameters
74827482 /// * `span`: The [`Span`] covering this node
74837483 /// * `source`
7484- /// * `arguments `
7484+ /// * `options `
74857485 /// * `phase`
74867486 #[ inline]
74877487 pub fn alloc_import_expression (
74887488 self ,
74897489 span : Span ,
74907490 source : Expression < ' a > ,
7491- arguments : Vec < ' a , Expression < ' a > > ,
7491+ options : Vec < ' a , Expression < ' a > > ,
74927492 phase : Option < ImportPhase > ,
74937493 ) -> Box < ' a , ImportExpression < ' a > > {
7494- Box :: new_in ( self . import_expression ( span, source, arguments , phase) , self . allocator )
7494+ Box :: new_in ( self . import_expression ( span, source, options , phase) , self . allocator )
74957495 }
74967496
74977497 /// Build an [`ImportDeclaration`].
0 commit comments