You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the ExpressionVisitor (and the snippet compiler) contains assumptions about the language of the generated code, but it should be independent of it.
Examples
it is assumed that assignment to a variable is always in the variable = value form. Because of this assumption we have to know on the snippetcompiler level if we are assigning to a pointer or a value - which is another c++ dependency
the c++ specific nullptr (or the c++ specific TypeConverter) is used in null expressions
The text was updated successfully, but these errors were encountered:
Currently the ExpressionVisitor (and the snippet compiler) contains assumptions about the language of the generated code, but it should be independent of it.
Examples
variable = value
form. Because of this assumption we have to know on the snippetcompiler level if we are assigning to a pointer or a value - which is anotherc++
dependencynullptr
(or the c++ specific TypeConverter) is used in null expressionsThe text was updated successfully, but these errors were encountered: