Changes between Version 29 and Version 30 of WebInspectorCodingStyleGuide
- Timestamp:
- Jun 18, 2020, 1:34:28 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebInspectorCodingStyleGuide
v29 v30 125 125 {{{ 126 126 // return value not implicitly returned 127 127 128 setTimeout(() => { 128 129 testRunner.notifyDone() … … 133 134 {{{ 134 135 // implicit return value not used 136 135 137 setTimeout(() => testRunner.notifyDone(), 0); 136 138 }}} … … 159 161 160 162 {{{ 163 // `this` will be window 164 161 165 Base.prototype.compute = (a, b, c) => { 162 166 // ... … … 167 171 }; 168 172 169 // `this` will be window170 173 WI.UIString = (format, args) => { 171 174 // ...