public
Fork of olsonjeffery/boolangstudio
Description: Boo language integration for Visual Studio 2008
Homepage: http://www.codeplex.com/BooLangStudio
Clone URL: git://github.com/jagregory/boolangstudio.git
boolangstudio / Source / BooLangService / StringParsing / ExcludingStringLiteralsStringWalker.cs
54d4bcef » jagregory 2008-09-01 Some changes to brace match... 1 namespace Boo.BooLangService.StringParsing
2 {
3 public class ExcludingStringLiteralsStringWalker : StringWalker
4 {
5 protected override bool ShouldYield(char currentChar)
6 {
7 if (StateIs(StringWalkerState.InsideString)) return false;
8
9 return base.ShouldYield(currentChar);
10 }
11 }
12 }