Fix Closure transpile.js build error

See also:
- google/closure-compiler#2051
- bazelbuild/rules_closure@9e92334

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135138725
This commit is contained in:
jart 2016-10-04 12:35:52 -07:00 committed by Ben McIlwain
parent e0f2620333
commit ad66f805cf
5 changed files with 10 additions and 12 deletions

View file

@ -286,6 +286,7 @@ function testDelete() {
/**
* @param {string=} opt_email
* @return {Object}
*/
function createTestContact(opt_email) {
var nameMail = opt_email || 'test@example.com';
@ -304,6 +305,7 @@ function createTestContact(opt_email) {
/**
* Convert parsed formContact to simulated wire form.
* @param {!Element} contact
* @return {Object}
*/
function simulateJsonForContact(contact) {
contact.visibleInWhoisAsAdmin = contact.visibleInWhoisAsAdmin == 'true';

View file

@ -66,7 +66,10 @@ function tearDown() {
}
/** Creates a test registrar. */
/**
* Creates test registrar.
* @return {Object}
*/
function createTestRegistrar() {
return {
emailAddress: 'test2.ui@example.com',