/NRefactory/ICSharpCode.NRefactory.VB/Lexer/Special/SpecialTracker.cs
http://github.com/icsharpcode/ILSpy · C# · 71 lines · 6 code · 2 blank · 63 comment · 0 complexity · c624a606bacff4dd1eaeabba5ec46473 MD5 · raw file
- // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
- // This code is distributed under MIT X11 license (for details please see \doc\license.txt)
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ICSharpCode.NRefactory.VB.Parser
- {
- // public class SpecialTracker
- // {
- // List<ISpecial> currentSpecials = new List<ISpecial>();
- //
- // CommentType currentCommentType;
- // StringBuilder sb = new StringBuilder();
- // Location startPosition;
- // bool commentStartsLine;
- //
- // public List<ISpecial> CurrentSpecials {
- // get {
- // return currentSpecials;
- // }
- // }
- //
- // /// <summary>
- // /// Gets the specials from the SpecialTracker and resets the lists.
- // /// </summary>
- // public List<ISpecial> RetrieveSpecials()
- // {
- // List<ISpecial> tmp = currentSpecials;
- // currentSpecials = new List<ISpecial>();
- // return tmp;
- // }
- //
- // public void AddEndOfLine(Location point)
- // {
- // currentSpecials.Add(new BlankLine(point));
- // }
- //
- // public void AddPreprocessingDirective(PreprocessingDirective directive)
- // {
- // if (directive == null)
- // throw new ArgumentNullException("directive");
- // currentSpecials.Add(directive);
- // }
- //
- // // used for comment tracking
- // public void StartComment(CommentType commentType, bool commentStartsLine, Location startPosition)
- // {
- // this.currentCommentType = commentType;
- // this.startPosition = startPosition;
- // this.sb.Length = 0;
- // this.commentStartsLine = commentStartsLine;
- // }
- //
- // public void AddChar(char c)
- // {
- // sb.Append(c);
- // }
- //
- // public void AddString(string s)
- // {
- // sb.Append(s);
- // }
- //
- // public void FinishComment(Location endPosition)
- // {
- // currentSpecials.Add(new Comment(currentCommentType, sb.ToString(), commentStartsLine, startPosition, endPosition));
- // }
- // }
- }