| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). | 4 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). |
| 5 * Copyright (C) 2009 Joseph Pecoraro | 5 * Copyright (C) 2009 Joseph Pecoraro |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * | 10 * |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 * @return {string} | 100 * @return {string} |
| 101 */ | 101 */ |
| 102 format(vararg) { | 102 format(vararg) { |
| 103 return String | 103 return String |
| 104 .format( | 104 .format( |
| 105 this._localizedFormat, arguments, String.standardFormatters, '', Web
Inspector.UIStringFormat._append, | 105 this._localizedFormat, arguments, String.standardFormatters, '', Web
Inspector.UIStringFormat._append, |
| 106 this._tokenizedFormat) | 106 this._tokenizedFormat) |
| 107 .formattedResult; | 107 .formattedResult; |
| 108 } | 108 } |
| 109 }; | 109 }; |
| 110 | |
| 111 | |
| OLD | NEW |