()
| 1599 | return list.join('.'); |
| 1600 | } |
| 1601 | _parseLiteral() { |
| 1602 | const token = this._tokenizer.peek(); |
| 1603 | if (token.type === 'str' || token.type === 'bool' || token.type === 'int' || token.type === 'float' || token.type === 'complex') { |
| 1604 | this._tokenizer.read(); |
| 1605 | return token; |
| 1606 | } |
| 1607 | return null; |
| 1608 | } |
| 1609 | _parseTypeArguments() { |
| 1610 | const list = []; |
| 1611 | this._tokenizer.expect('['); |
no test coverage detected