Browse thread
[Caml-list] revised syntax and immediate objects
- Jonathan Roewen
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2006-07-04 (21:43) |
From: | Jonathan Roewen <jonathan.roewen@g...> |
Subject: | [Caml-list] revised syntax and immediate objects |
Hi, What is the syntax for immediate objects in ocaml when using revised syntax? I was reading the camlp4 tutorial from the caml site, and the section on objects just directs users to use camlp4o pr_r.cmo to dump an example in revised syntax. The snippet of input code is thus: let obj a b c = object method a : int = a method b : string = b method c : string option = c end;; The output from camlp4o pr_r.cmo gives: value obj a b c =<pr_r: not impl: expr; tag = 25>; I'd like to try make a camlp4 syntax extension that uses immediate objects, and this isn't helping ;-) Jonathan