YamlUtility.Grammar.YamlParser.ParseEmptyLineQuoted C# (CSharp) Method

ParseEmptyLineQuoted() private method

private ParseEmptyLineQuoted ( bool &success ) : void
success bool
return void
        private void ParseEmptyLineQuoted(out bool success)
        {
            int errorCount = Errors.Count;
            int start_position = position;

            ParseIgnoredBlank(out success);

            ParseNormalizedLineBreak(out success);
            if (!success)
            {
                Error("Failed to parse NormalizedLineBreak of EmptyLineQuoted.");
                position = start_position;
            }

            if (success) { ClearError(errorCount); }
        }
YamlParser