Changes between Version 29 and Version 30 of WebInspectorCodingStyleGuide


Ignore:
Timestamp:
Jun 18, 2020 1:34:28 PM (4 years ago)
Author:
Devin Rousso
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebInspectorCodingStyleGuide

    v29 v30  
    125125{{{
    126126// return value not implicitly returned
     127
    127128setTimeout(() => {
    128129    testRunner.notifyDone()
     
    133134{{{
    134135// implicit return value not used
     136
    135137setTimeout(() => testRunner.notifyDone(), 0);
    136138}}}
     
    159161
    160162{{{
     163// `this` will be window
     164
    161165Base.prototype.compute = (a, b, c) => {
    162166    // ...
     
    167171};
    168172
    169 // `this` will be window
    170173WI.UIString = (format, args) => {
    171174    // ...