mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
12 lines
135 B
JavaScript
12 lines
135 B
JavaScript
|
import { a } from "x";
|
||
|
import b from "y";
|
||
|
|
||
|
const d = {};
|
||
|
|
||
|
const obj = {
|
||
|
a,
|
||
|
[b]: 'foo',
|
||
|
c: 'bar',
|
||
|
d
|
||
|
};
|
||
|
console.log(obj);
|