The semantics for the equality of two ESImport objects are that
they are the same as long as the symbol and module match, not taking the
alias into account.
Construct an ESM import for a given symbol and module, where the symbol
is aliased.
JavaScript equivalent would be:
import {symbol as alias} from module;
The semantics for the equality of two ESImport objects are that
they are the same as long as the symbol and module match, not taking the
alias into account.