(key: string)
| 400 | (rightSide.type === 'list' || rightSide.type === 'tuple' || rightSide.type === 'dictionary') |
| 401 | ) { |
| 402 | const store = (key: string) => { |
| 403 | if (!key) {return;} |
| 404 | nodeCtx.literalValues![key] = rightSide; |
| 405 | }; |
| 406 | store(leftTextRaw); |
| 407 | if (leftTextRaw.startsWith('self._')) {store(leftTextRaw.replace('self._', ''));} |
| 408 | if (leftTextRaw.startsWith('self.')) {store(leftTextRaw.replace('self.', ''));} |