Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/4 Co-authored-by: jackfiled <xcrenchangjun@outlook.com> Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using CanonSharp.Benchmark.Canon.Core.Abstractions;
 | |
| using CanonSharp.Benchmark.Canon.Core.Enums;
 | |
| 
 | |
| namespace CanonSharp.Benchmark.Canon.Core.SyntaxNodes;
 | |
| 
 | |
| public class VarDeclarations : NonTerminatedSyntaxNode
 | |
| {
 | |
|     public override NonTerminatorType Type => NonTerminatorType.VarDeclarations;
 | |
| 
 | |
|     public override void PreVisit(SyntaxNodeVisitor visitor)
 | |
|     {
 | |
|         visitor.PreVisit(this);
 | |
|     }
 | |
| 
 | |
|     public override void PostVisit(SyntaxNodeVisitor visitor)
 | |
|     {
 | |
|         visitor.PostVisit(this);
 | |
|     }
 | |
| 
 | |
|     public static VarDeclarations Create(List<SyntaxNodeBase> children)
 | |
|     {
 | |
|         return new VarDeclarations { Children = children };
 | |
|     }
 | |
| }
 |