Twig icon indicating copy to clipboard operation
Twig copied to clipboard

Rename Node classes related to variables

Open fabpot opened this issue 1 year ago • 0 comments

Whenever I work on Twig internals, it's always complicated to reason about variable names, probably because the class names are confusing. This PR is an attempt to find "better" and more explicit names.

This PR does the following renaming:

  • NameExpression to Variable\ContextVariable Represents the value of a context variable like $context[VAR] ?? null

  • AssignNameExpression to Variable\AssignContextVariable Represents a context variable assignment like in $context[VAR] =

  • TempNameExpression to Variable\LocalVariable Represents a "private" local variable like $_l111

fabpot avatar Oct 16 '24 07:10 fabpot