visitSimpleKey method

R visitSimpleKey(
  1. TomlSimpleKey key
)

Visits the given non-dotted key.

This method is using TomlSimpleKey.acceptSimpleKeyVisitor to invoke the right visitor method from above.

Implementation

R visitSimpleKey(TomlSimpleKey key) => key.acceptSimpleKeyVisitor(this);