CK.Text.Tests.JSONVisitorTests.JSONMinifier.SkipWhiteSpaces C# (CSharp) Method

SkipWhiteSpaces() protected method

protected SkipWhiteSpaces ( ) : void
return void
            protected override void SkipWhiteSpaces()
            {
                if( char.IsWhiteSpace( Matcher.Head ) )
                {
                    Flush( Matcher.StartIndex );
                    Matcher.MatchWhiteSpaces( 0 );
                    _lastWriteIdx = Matcher.StartIndex;
                }
            }