setASTNodeType() публичный Метод

Sets the global default AST Node Type for this ASTFactory instance. This method also attempts to load the System.Type instance for the specified typename.
public setASTNodeType ( string t ) : void
t string Fully qualified AST Node Type name.
Результат void
Пример #1
0
 /*Specify the type of node to create during tree building */
 public virtual void  setASTNodeClass(string nodeType)
 {
     astFactory.setASTNodeType(nodeType);
 }
Пример #2
0
 /// <summary>
 /// Specify the type of node to create during tree building.
 /// </summary>
 /// <param name="cl">Fully qualified AST Node type name.</param>
 public virtual void  setASTNodeClass(string cl)
 {
     astFactory.setASTNodeType(cl);
 }