_expressions
¶
Resolve lexical identifiers, visible function names, and expression typing rules while delegating the implementation to smaller concern-focused mixins.
Modules:
-
arrays– -
buffer_views– -
class_access– -
class_support– -
classes– -
literals– -
modules– -
mutation– -
operators– -
tensor_buffer_support– -
tensors– -
tensors_buffers–
Classes:
ExpressionVisitorMixin
¶
Bases: ExpressionModuleVisitorMixin, ExpressionMutationVisitorMixin, ExpressionClassVisitorMixin, ExpressionOperatorVisitorMixin, ExpressionArrayVisitorMixin, ExpressionTensorBufferVisitorMixin, ExpressionLiteralVisitorMixin
Compose the expression-focused semantic mixins so the analyzer keeps the same visitor surface while the implementation stays split by concern.
Methods:
-
visit–
visit
¶
visit(node: FunctionCall) -> None
Source code in packages/irx/src/irx/analysis/handlers/_expressions/modules.py
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | |