| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 |
| 6 /** | 7 /** |
| 7 * @unrestricted | 8 * @unrestricted |
| 8 */ | 9 */ |
| 9 WebInspector.CSSParser = class extends WebInspector.Object { | 10 WebInspector.CSSParser = class extends WebInspector.Object { |
| 10 constructor() { | 11 constructor() { |
| 11 super(); | 12 super(); |
| 12 this._rules = []; | 13 this._rules = []; |
| 13 this._terminated = false; | 14 this._terminated = false; |
| 14 } | 15 } |
| 15 | 16 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 /** @type {string} */ | 175 /** @type {string} */ |
| 175 this.value; | 176 this.value; |
| 176 /** @type {!WebInspector.CSSParser.Range} */ | 177 /** @type {!WebInspector.CSSParser.Range} */ |
| 177 this.valueRange; | 178 this.valueRange; |
| 178 /** @type {!WebInspector.CSSParser.Range} */ | 179 /** @type {!WebInspector.CSSParser.Range} */ |
| 179 this.range; | 180 this.range; |
| 180 /** @type {(boolean|undefined)} */ | 181 /** @type {(boolean|undefined)} */ |
| 181 this.disabled; | 182 this.disabled; |
| 182 } | 183 } |
| 183 }; | 184 }; |
| OLD | NEW |