コード例 #1
0
 /// <summary>
 /// Visits a group template declaration.
 /// </summary>
 /// <param name="declaration">the group template declaration</param>
 protected internal virtual void visitGroupTemplateDeclaration(GroupTemplate declaration)
 {
 }
コード例 #2
0
ファイル: Group.cs プロジェクト: cuijialang/HDL_ANTLR4
 /// <summary>
 /// Creates a group declaration.
 /// </summary>
 /// <param name="identifier">the identifier</param>
 /// <param name="template">the group template</param>
 public Group(string identifier, GroupTemplate template)
 {
     this.identifier = identifier;
     this.template   = template;
 }