Interface ValueConverter

Language-specific service for converting string values from the source text format into a value to be held in the AST.

interface ValueConverter {
    convert(input: string, cstNode: CstNode): ValueType;
}

Implemented by

Methods

Methods