public override void ExitEmpty_parameter_stmt([NotNull] MalinaParser.Empty_parameter_stmtContext context)
 {
     ExitContext(context);
     //If there empty block then set node's ValueType to EmptyObject
     if (context.COLON() != null)
     {
         context.Node.ValueType = ValueType.EmptyObject;
     }
 }
 public override void EnterEmpty_parameter_stmt([NotNull] MalinaParser.Empty_parameter_stmtContext context)
 {
     EnterContext(context);
 }