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

ParseIgnoredSpace() private method

private ParseIgnoredSpace ( bool &success ) : void
success bool
return void
        private void ParseIgnoredSpace(out bool success)
        {
            int errorCount = Errors.Count;
            while (true)
            {
                MatchTerminal(' ', out success);
                if (!success) { break; }
            }
            success = true;
        }
YamlParser