parse(`import("foo", {})`)[0][0]
parse(`import(foo, {})`)[0][0]
- The first one gives a
s...e range covering "foo"
- The second one gives a
s...e range covering foo, {}
I would expect s...e to either include import attributes in both cases, or to always exclude them.
s...erange covering"foo"s...erange coveringfoo, {}I would expect
s...eto either include import attributes in both cases, or to always exclude them.