Наследование: MetadataCopier
Пример #1
0
 /// <summary>
 /// The best way to dispatch a visit method in code copier is to implement an 
 /// ICodeVisitor and call the dispatch method of IExpression or IStatement dynamically.
 /// This class implements the ICodeVisitor interface for the code copier. 
 /// After a node is visited, the result is stored in resultExpression or resultStatement.
 /// </summary>
 internal CreateMutableType(CodeCopier codeCopier)
 {
     this.myCodeCopier = codeCopier;
 }