Changes between Version 4 and Version 5 of WebInspectorCodingStyleGuide


Ignore:
Timestamp:
Dec 1, 2013 11:00:49 AM (10 years ago)
Author:
Brian Burg
Comment:

Add protected

Legend:

Unmodified
Added
Removed
Modified
  • WebInspectorCodingStyleGuide

    v4 v5  
    11These are JavaScript coding styles used in the Source/WebInspectorUI/UserInterface folder.
     2
     3(Note: Few if any of these guidelines are checked by `check-webkit-style`. There's a tracking bug for that: [https://bugs.webkit.org/show_bug.cgi?id=125045])
    24
    35* No trailing whitespace
     
    5456    }
    5557
     58    // Protected
     59    handleEvent: function(event)
     60    {
     61        /* delegate methods, event handlers, and overrides. */
     62    },
     63
    5664    // Private
    5765