Ejemplo n.º 1
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="TypeNamingParser.lambdaName"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitLambdaName([NotNull] TypeNamingParser.LambdaNameContext context)
 {
 }
Ejemplo n.º 2
0
 public LambdaName(TypeNamingParser.LambdaNameContext ctx)
 {
     Asserts.Null(ctx.UNKNOWN(), "ctx.UNKNOWN() != null");
     _ctx = ctx;
 }