Skip to content

Commit

Permalink
Adjust compiler plugin comment
Browse files Browse the repository at this point in the history
  • Loading branch information
robflop committed Aug 15, 2024
1 parent 6331087 commit da6167f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ class LoRePhase extends PluginPhase:
)
TVar("<error>")
case field => // Field access, like "operand.value" and so forth (no parameter lists)
// TODO: Unary operators that aren't explicitly supported will also land here, not sure what to do about that
// Unary operators that aren't explicitly supported will also land here and be turned
// into property/method access AST nodes instead, which makes sense given the Scala base
// as operators are basically just methods on the data types themselves in the first place.
logRhsInfo(indentLevel, operandSide, "field access to field", opOrField.show)
TFCall( // foo.bar
buildLoreRhsTerm(arg, indentLevel + 1, operandSide), // foo (might be a more complex expression)
Expand Down

0 comments on commit da6167f

Please sign in to comment.