// // Copyright (c) Microsoft Corporation. All rights reserved. // namespace System.Activities.Debugger { using System.Collections.Generic; internal partial class CharacterSpottingTextReader : ICharacterSpottingTextReaderForUnitTest { int ICharacterSpottingTextReaderForUnitTest.CurrentLine { get { return this.currentLine; } } int ICharacterSpottingTextReaderForUnitTest.CurrentPosition { get { return this.currentPosition; } } List ICharacterSpottingTextReaderForUnitTest.StartBrackets { get { return this.startAngleBrackets; } } List ICharacterSpottingTextReaderForUnitTest.EndBrackets { get { return this.endAngleBrackets; } } List ICharacterSpottingTextReaderForUnitTest.SingleQuotes { get { return this.singleQuotes; } } List ICharacterSpottingTextReaderForUnitTest.DoubleQuotes { get { return this.doubleQuotes; } } } }