caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Recovering masked methods
@ 2002-07-15 23:13 Alessandro Baretta
  2002-07-16  1:15 ` Jacques Garrigue
  0 siblings, 1 reply; 20+ messages in thread
From: Alessandro Baretta @ 2002-07-15 23:13 UTC (permalink / raw)
  To: Ocaml

I have code similar to the following

class a =
object (self)
   method m = 1
   method n = "Hello!"
end

class b =
object (self)
   inherit a as super_a
   method m = 2
end

Now I would like to define a third class, inheriting from b. 
  I need this class to be able to access the definition of 
method m from class a, otherwise I would have to use "copy & 
paste", which is contrary to my programmer's ethics.

Ideally, I would like to write

class c =
object (self)
   inherit b as super_b

   method m =
     (* some_stuff *)
     super_b # super_a # m
end

Presently, this is not allowed. Is there any specific reason 
for this? Could such a feature be implemented in the future?

Alex

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2002-11-12 19:47 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-15 23:13 [Caml-list] Recovering masked methods Alessandro Baretta
2002-07-16  1:15 ` Jacques Garrigue
2002-07-16  9:28   ` Alessandro Baretta
2002-07-16  9:48     ` Laurent Vibert
2002-07-16 10:08       ` Johan Baltié
2002-07-16 10:10       ` Alessandro Baretta
2002-07-16  9:59     ` Johan Baltié
2002-07-16 11:08       ` [Caml-list] Recovering masked methods (with CamlP4?) Alessandro Baretta
2002-07-16 11:32         ` Johan Baltié
2002-07-16 12:52           ` Alessandro Baretta
2002-07-16 12:26         ` Daniel de Rauglaudre
2002-07-16 12:54           ` Alessandro Baretta
2002-07-17  9:26             ` Daniel de Rauglaudre
2002-07-16 13:32         ` John Prevost
2002-07-16 13:35           ` John Prevost
2002-07-16 14:06           ` Alessandro Baretta
2002-07-16 14:15             ` Johan Baltié
2002-07-16 14:29               ` Alessandro Baretta
2002-11-11  9:20         ` Eray Ozkural
2002-07-16 10:45     ` [Caml-list] Recovering masked methods John Prevost

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).