Changes between Version 4 and Version 5 of WebInspectorCodingStyleGuide
- Timestamp:
- Dec 1, 2013, 11:00:49 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebInspectorCodingStyleGuide
v4 v5 1 1 These 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]) 2 4 3 5 * No trailing whitespace … … 54 56 } 55 57 58 // Protected 59 handleEvent: function(event) 60 { 61 /* delegate methods, event handlers, and overrides. */ 62 }, 63 56 64 // Private 57 65