Boo.BooLangService.StringParsing.ExcludingStringLiteralsStringWalker.ShouldYield C# (CSharp) 메소드

ShouldYield() 보호된 메소드

protected ShouldYield ( char currentChar ) : bool
currentChar char
리턴 bool
        protected override bool ShouldYield(char currentChar)
        {
            if (StateIs(StringWalkerState.InsideString)) return false;

            return base.ShouldYield(currentChar);
        }
ExcludingStringLiteralsStringWalker