| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 /** | 31 /** |
| 32 * @constructor | 32 * @constructor |
| 33 */ | 33 */ |
| 34 WebInspector.AuditFormatters = function() | 34 WebInspector.AuditFormatters = function() |
| 35 { | 35 { |
| 36 } | 36 }; |
| 37 | 37 |
| 38 WebInspector.AuditFormatters.Registry = { | 38 WebInspector.AuditFormatters.Registry = { |
| 39 | 39 |
| 40 /** | 40 /** |
| 41 * @param {string} text | 41 * @param {string} text |
| 42 * @return {!Text} | 42 * @return {!Text} |
| 43 */ | 43 */ |
| 44 text: function(text) | 44 text: function(text) |
| 45 { | 45 { |
| 46 return createTextNode(text); | 46 return createTextNode(text); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 * @return {*} | 134 * @return {*} |
| 135 */ | 135 */ |
| 136 partiallyApply: function(formatters, thisArgument, value) | 136 partiallyApply: function(formatters, thisArgument, value) |
| 137 { | 137 { |
| 138 if (Array.isArray(value)) | 138 if (Array.isArray(value)) |
| 139 return value.map(this.partiallyApply.bind(this, formatters, thisArgu
ment)); | 139 return value.map(this.partiallyApply.bind(this, formatters, thisArgu
ment)); |
| 140 if (typeof value === "object" && typeof formatters[value.type] === "func
tion" && value.arguments) | 140 if (typeof value === "object" && typeof formatters[value.type] === "func
tion" && value.arguments) |
| 141 return formatters[value.type].apply(thisArgument, value.arguments); | 141 return formatters[value.type].apply(thisArgument, value.arguments); |
| 142 return value; | 142 return value; |
| 143 } | 143 } |
| 144 } | 144 }; |
| 145 | 145 |
| 146 WebInspector.auditFormatters = new WebInspector.AuditFormatters(); | 146 WebInspector.auditFormatters = new WebInspector.AuditFormatters(); |
| OLD | NEW |