(to_name, expression, emit, context)
| 263 | |
| 264 | |
| 265 | def generateModuleAttributeCode(to_name, expression, emit, context): |
| 266 | getModuleVariableReferenceCode( |
| 267 | to_name=to_name, |
| 268 | variable_name=expression.getVariable().getName(), |
| 269 | use_caching=False, |
| 270 | needs_check=False, |
| 271 | conversion_check=decideConversionCheckNeeded(to_name, expression), |
| 272 | emit=emit, |
| 273 | context=context, |
| 274 | ) |
| 275 | |
| 276 | |
| 277 | # Part of "Nuitka", an optimizing Python compiler that is compatible and |
nothing calls this directly
no test coverage detected
searching dependent graphs…