Exemplo n.º 1
0
 public void ExitBinaryop([NotNull] LuaParser.BinaryopContext context)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public void ExitBinaryop([NotNull] LuaParser.BinaryopContext context) => DefaultExit(context);
Exemplo n.º 3
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="LuaParser.binaryop"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitBinaryop([NotNull] LuaParser.BinaryopContext context)
 {
 }
Exemplo n.º 4
0
 public void EnterBinaryop([NotNull] LuaParser.BinaryopContext context) => DefaultEnter(context);