CK.Text.JSONVisitor.VisitTerminalValue C# (CSharp) Method

VisitTerminalValue() protected method

Visits a terminal value. This method simply calls Matcher.MatchWhiteSpaces(0) to skip any whitespace and TryMatchJSONTerminalValue to skip the value itself.
protected VisitTerminalValue ( ) : bool
return bool
        protected virtual bool VisitTerminalValue()
        {
            SkipWhiteSpaces();
            return _m.TryMatchJSONTerminalValue() || _m.SetError();
        }