Changes between Version 16 and Version 17 of WebInspectorCodingStyleGuide
- Timestamp:
- Aug 28, 2015, 3:25:44 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebInspectorCodingStyleGuide
v16 v17 146 146 147 147 {{{ 148 WebInspector.NewObjectType = class NewObjectType extends WebInspector.Object { 148 WebInspector.NewObjectType = class NewObjectType extends WebInspector.Object 149 { 149 150 constructor(param) 150 151 { 151 152 super(); 153 console.assert(param instanceof WebInspector.ExpectedType); 152 154 this._propertyName = param; 153 155 } 154 156 155 157 // Static 156 computeBestWidth(things) 158 159 static computeBestWidth(things) 157 160 { 158 161 ....