diff options
author | Alain Frisch <alain@frisch.fr> | 2013-04-10 17:26:55 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2013-04-10 17:26:55 +0000 |
commit | ee5f754a42fa42f69cc70283bb033ea2be1ce6f1 (patch) | |
tree | 58967ecffa45177a8d93a104c9d70e10f05e41a4 /typing/printtyped.ml | |
parent | cb38ccc346a8ef0a240d70cdd02375ca90c15005 (diff) |
Attributes and extension points in class_expr.
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/extension_points@13500 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'typing/printtyped.ml')
-rw-r--r-- | typing/printtyped.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/typing/printtyped.ml b/typing/printtyped.ml index ec96b8050..c5905bb8f 100644 --- a/typing/printtyped.ml +++ b/typing/printtyped.ml @@ -477,6 +477,7 @@ and class_type_declaration i ppf x = and class_expr i ppf x = line i ppf "class_expr %a\n" fmt_location x.cl_loc; + attributes i ppf x.cl_attributes; let i = i+1 in match x.cl_desc with | Tcl_ident (li, _, l) -> |