Lines Matching defs:imported
1097 "` with `--ets-module` option. It is being imported by another file.");
1127 ThrowSyntaxError("Type import requires selective binding to define the required imported elements.");
1229 auto *imported = AllocNode<ir::Identifier>(importedToken.Ident(), Allocator());
1231 imported->SetReference();
1232 imported->SetRange(Lexer()->GetToken().Loc());
1243 auto *specifier = AllocNode<ir::ImportSpecifier>(imported, local);
1244 specifier->SetRange({imported->Start(), local->End()});
1250 auto *imported = AllocNode<ir::Identifier>(Lexer()->GetToken().Ident(), Allocator());
1251 imported->SetReference();
1252 imported->SetRange(Lexer()->GetToken().Loc());
1254 auto *specifier = AllocNode<ir::ImportDefaultSpecifier>(imported);
1255 specifier->SetRange({imported->Start(), imported->End()});
1314 auto *imported = AllocNode<ir::Identifier>(Lexer()->GetToken().Ident(), Allocator());
1315 imported->SetReference();
1316 imported->SetRange(Lexer()->GetToken().Loc());
1323 auto *specifier = AllocNode<ir::ImportDefaultSpecifier>(imported);
1324 specifier->SetRange({imported->Start(), imported->End()});