mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
499 B
23 lines
499 B
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="none" email=""/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
|
|
namespace ICSharpCode.NRefactory |
|
{ |
|
public class BlankLine : AbstractSpecial |
|
{ |
|
public BlankLine(Location point) : base(point) |
|
{ |
|
} |
|
|
|
public override object AcceptVisitor(ISpecialVisitor visitor, object data) |
|
{ |
|
return visitor.Visit(this, data); |
|
} |
|
} |
|
}
|
|
|