mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
168 B
JavaScript
13 lines
168 B
JavaScript
(function(){
|
|
var o = {};
|
|
o.prop1 = o['prop1'] = x;
|
|
|
|
o['prop2'] = o.prop2 = x;
|
|
|
|
o.prop3 = x
|
|
o['prop3'] = x;
|
|
|
|
o['prop4'] = x;
|
|
o.prop4 = x
|
|
});
|