()
| 1590 | return null; |
| 1591 | } |
| 1592 | _parseDottedName() { |
| 1593 | const list = []; |
| 1594 | do { |
| 1595 | const name = this._parseName(true); |
| 1596 | list.push(name.id); |
| 1597 | } |
| 1598 | while (this._tokenizer.accept('.')); |
| 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') { |
no test coverage detected