18 changed files with 1814 additions and 13 deletions
@ -0,0 +1,25 @@
@@ -0,0 +1,25 @@
|
||||
// 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; |
||||
|
||||
namespace ICSharpCode.NRefactory.CSharp |
||||
{ |
||||
/// <summary>
|
||||
/// Output formatter for the output visitor.
|
||||
/// </summary>
|
||||
public class OutputFormatter |
||||
{ |
||||
void WriteIdentifier(string ident); |
||||
void WriteKeyword(string keyword); |
||||
void WriteToken(string token); |
||||
void Space(); |
||||
|
||||
void OpenBrace(); |
||||
void CloseBrace(); |
||||
|
||||
void NewLine(); |
||||
|
||||
void WriteComment(CommentType commentType, string content); |
||||
} |
||||
} |
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue