()
| 191 | } |
| 192 | |
| 193 | private _nextToken() { |
| 194 | this._currentTokenIndex++; |
| 195 | if (this._currentTokenIndex < this._tokens.length) { |
| 196 | this._currentToken = this._tokens[this._currentTokenIndex]; |
| 197 | } else { |
| 198 | this._currentToken = null; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | private _fontStyleVariantWeight() { |
| 203 | let hasStyle = false; |
no outgoing calls
no test coverage detected