MCPcopy Index your code
hub / github.com/lutzroeder/netron / _parseDottedName

Method _parseDottedName

source/python.js:1592–1600  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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') {

Callers 1

_parseStatementMethod · 0.80

Calls 3

_parseNameMethod · 0.80
pushMethod · 0.45
acceptMethod · 0.45

Tested by

no test coverage detected