Exemple #1
0
 public TypeName(TypeNamingParser.TypeContext ctx)
 {
     Asserts.Null(ctx.UNKNOWN(), "ctx.UNKNOWN() != null");
     Ctx = ctx;
 }
Exemple #2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="TypeNamingParser.type"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitType([NotNull] TypeNamingParser.TypeContext context)
 {
 }
Exemple #3
0
 public ArrayTypeName(TypeNamingParser.TypeContext ctx) : base(ctx)
 {
 }