visitString method

R visitString(
  1. TomlString value
)

Visits the given value.

This method is using TomlString.acceptStringVisitor to invoke the right visitor method from above.

Implementation

R visitString(TomlString value) => value.acceptStringVisitor(this);