diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-10 16:08:25 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-10 16:08:25 +0100 |
commit | c4fca6ff8ffa7ad8e6129dd0f6fe1b72d58c950f (patch) | |
tree | b6296c84b987eb18e4b4e9cba8e0371c6a3c1c26 /src | |
parent | ce876db1ef52af3c0b1a89b18a08279a5aea3d9d (diff) | |
parent | d0798a5e0d3828b491ed35b2f62edf6aef199e2b (diff) | |
download | LPC-Projet-c4fca6ff8ffa7ad8e6129dd0f6fe1b72d58c950f.tar.gz LPC-Projet-c4fca6ff8ffa7ad8e6129dd0f6fe1b72d58c950f.zip |
Merge branch 'master' into codegen-opt
Diffstat (limited to 'src')
-rw-r--r-- | src/typing.ml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/typing.ml b/src/typing.ml index 56942f1..7377d5c 100644 --- a/src/typing.ml +++ b/src/typing.ml @@ -677,10 +677,10 @@ let compute_tclass env c = let ret_type = match proto.p_ret_type with | Some k -> Some (build_type_or_ref k) | None -> None in + (* If method is redefined from a virtual method of a parent class, it becomes virtual with same offset Else if method is virtual, it gets new offset ! Else method is not virtual, everything is simple. *) - let rec check_in_super (s:tcls_hier) = match List.fold_left (fun k s -> let r = check_in_super s in @@ -694,9 +694,11 @@ let compute_tclass env c = | Some k -> Some k | None -> List.fold_left (fun f (i, p) -> - if (p.tp_name = proto.p_name && (List.map fst p.tp_args) = args_types) - then Some (s, i) - else f) None s.h_vtable + if (p.tp_name = proto.p_name && (List.map fst p.tp_args) = args_types && p.tp_virtual <> None) + then begin + ty_assert (p.tp_ret_type = ret_type) "Virtual method must be redefined with same return type."; + Some (s, i) + end else f) None s.h_vtable in let super = match check_in_super hier with | None -> if virt then (* allocate new spot in vtable of this object *) |