mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
179 B
14 lines
179 B
9 years ago
|
var foo = 'foo';
|
||
9 years ago
|
var bar = 'bar';
|
||
|
var baz = 'baz';
|
||
|
var bam = 'bam';
|
||
9 years ago
|
|
||
9 years ago
|
var x = { [foo]: 'bar' };
|
||
9 years ago
|
|
||
9 years ago
|
class X {
|
||
9 years ago
|
[bar] () {}
|
||
|
get [baz] () {}
|
||
|
set [bam] ( value ) {}
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
export { x, X };
|