@@ -19,91 +19,91 @@ public interface IYamlBuiderVisitor
1919 /// </summary>
2020 /// <param name="fileSyntax">File syntax node.</param>
2121 /// <param name="visitor">Associated visitor.</param>
22- public virtual void CreateFile ( IFileSyntax fileSyntax , MyNodeVisitor visitor )
22+ public virtual void CreateFile ( IFileSyntax fileSyntax , DocNodeVisitor visitor )
2323 {
2424 throw new NotImplementedException ( ) ;
2525 }
2626
2727 public virtual void CreateNamespaceYaml (
2828 INamespaceDeclaration namespaceDeclaration ,
29- MyNodeVisitor visitor )
29+ DocNodeVisitor visitor )
3030 {
3131 throw new NotImplementedException ( ) ;
3232 }
3333
3434 public virtual void CreateClassYaml (
3535 IClassDeclaration classDeclaration ,
36- MyNodeVisitor visitor )
36+ DocNodeVisitor visitor )
3737 {
3838 throw new NotImplementedException ( ) ;
3939 }
4040
4141 public virtual void CreateFieldYaml (
4242 IFieldDeclaration fieldDeclaration ,
43- MyNodeVisitor visitor )
43+ DocNodeVisitor visitor )
4444 {
4545 throw new NotImplementedException ( ) ;
4646 }
4747
4848 public virtual void CreateMethodYaml (
4949 IMethodDeclaration methodDeclaration ,
50- MyNodeVisitor visitor )
50+ DocNodeVisitor visitor )
5151 {
5252 throw new NotImplementedException ( ) ;
5353 }
5454
5555 public virtual void CreateNamedValueTypeYaml (
5656 INamedValueTypeDeclaration namedValueTypeDeclaration ,
57- MyNodeVisitor visitor )
57+ DocNodeVisitor visitor )
5858 {
5959 throw new NotImplementedException ( ) ;
6060 }
6161
6262 public virtual void CreateEnumTypeYaml (
6363 IEnumTypeDeclaration enumTypeDeclaration ,
64- MyNodeVisitor myNodeVisitor )
64+ DocNodeVisitor myNodeVisitor )
6565 {
6666 throw new NotImplementedException ( ) ;
6767 }
6868
6969 void CreateNamedValueYaml (
7070 INamedValueDeclaration namedValueDeclaration ,
71- MyNodeVisitor myNodeVisitor )
71+ DocNodeVisitor myNodeVisitor )
7272 {
7373 throw new NotImplementedException ( ) ;
7474 }
7575
7676 void CreateEnumValueYaml (
7777 IEnumValueDeclaration enumValueDeclaration ,
78- MyNodeVisitor myNodeVisitor )
78+ DocNodeVisitor myNodeVisitor )
7979 {
8080 throw new NotImplementedException ( ) ;
8181 }
8282
8383 public virtual void CreateInterfaceYaml (
8484 IInterfaceDeclaration InterfaceDeclaration ,
85- MyNodeVisitor visitor )
85+ DocNodeVisitor visitor )
8686 {
8787 throw new NotImplementedException ( ) ;
8888 }
8989
9090 public virtual void CreateMethodPrototypeYaml (
9191 IMethodPrototypeDeclaration methodPrototypeDeclaration ,
92- MyNodeVisitor visitor )
92+ DocNodeVisitor visitor )
9393 {
9494 throw new NotImplementedException ( ) ;
9595 }
9696
9797 public virtual void CreateFunctionYaml (
9898 IFunctionDeclaration functionDeclaration ,
99- MyNodeVisitor visitor )
99+ DocNodeVisitor visitor )
100100 {
101101 throw new NotImplementedException ( ) ;
102102 }
103103
104104 void CreateStructuredTypeYaml (
105105 IStructuredTypeDeclaration structuredTypeDeclaration ,
106- MyNodeVisitor visitor )
106+ DocNodeVisitor visitor )
107107 {
108108 throw new NotImplementedException ( ) ;
109109 }
0 commit comments