Esempio n. 1
0
File: Type.cs Progetto: Djuffin/jcc
 /// <summary>
 /// Initializes a new instance of the <see cref="T:TypeEntity"/> class by its node.
 /// </summary>
 /// <param name="node">The node.</param>
 public TypeEntity(jcc.ParserScope.TypeNode node)
     : this(node.Name)
 {
     try
     {
     }
     catch (AnalizeException)
     {
         throw new AnalizeException("There is no type with this name:" + node.Name, node);
     }
 }