blob: 2baab0aa61eb1bb487de74c2c2c2711206da79d2 [file] [log] [blame]
==== object-initializer-with-comma
/**
* @type {Object}
*/
var x = {
};
/**
* @param {Object} args
*/
function test2(args) {
}
==
/**
* @type {Object}
*/
var x = { };
/**
* @param {Object} args
*/
function test2 (args) { }
==== object-initializer-without-comma
/**
* @type {Object}
*/
var x = {
}
/**
* @param {Object} args
*/
function test2(args) {
}
==
/**
* @type {Object}
*/
var x = { }
/**
* @param {Object} args
*/
function test2 (args) { }