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/typedtree.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/typedtree.ml')
-rw-r--r-- | typing/typedtree.ml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/typing/typedtree.ml b/typing/typedtree.ml index 5ab71c62f..912f60845 100644 --- a/typing/typedtree.ml +++ b/typing/typedtree.ml @@ -114,10 +114,13 @@ and meth = (* Value expressions for the class language *) and class_expr = - { cl_desc: class_expr_desc; - cl_loc: Location.t; - cl_type: Types.class_type; - cl_env: Env.t } + { + cl_desc: class_expr_desc; + cl_loc: Location.t; + cl_type: Types.class_type; + cl_env: Env.t; + cl_attributes: attribute list; + } and class_expr_desc = Tcl_ident of Path.t * Longident.t loc * core_type list |