visitValue method

R visitValue(
  1. TomlValue value
)

Visits the given value.

This method is using TomlValue.acceptValueVisitor to invoke the right visitor method from above.

Implementation

R visitValue(TomlValue value) => value.acceptValueVisitor(this);