diff options
author | Loïc Hoguin <[email protected]> | 2012-11-19 19:02:21 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-01-16 12:46:57 +0100 |
commit | 13d4a8d4e69a8965ab66685e751d11cda5f29567 (patch) | |
tree | e9e9deacda01d71a41c2fca36959d79418d15818 /lib/tools/src/cover.erl | |
parent | 0dc3a29744bed0b7f483ad72e19773dc0982ea50 (diff) | |
download | otp-13d4a8d4e69a8965ab66685e751d11cda5f29567.tar.gz otp-13d4a8d4e69a8965ab66685e751d11cda5f29567.tar.bz2 otp-13d4a8d4e69a8965ab66685e751d11cda5f29567.zip |
Remove what remains of the Mnemosyne code
Diffstat (limited to 'lib/tools/src/cover.erl')
-rw-r--r-- | lib/tools/src/cover.erl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/tools/src/cover.erl b/lib/tools/src/cover.erl index ab29d156aa..680c1781ca 100644 --- a/lib/tools/src/cover.erl +++ b/lib/tools/src/cover.erl @@ -1519,12 +1519,6 @@ aux_var(Vars, N) -> %% This way we will be able to exclude functions defined in include files. munge({function,0,module_info,_Arity,_Clauses},_Vars,_MainFile,_Switch) -> ignore; % module_info will be added again when the forms are recompiled -munge(Form={function,_,'MNEMOSYNE QUERY',_,_},Vars,_MainFile,Switch) -> - {Form,Vars,Switch}; % No bumps in Mnemosyne code. -munge(Form={function,_,'MNEMOSYNE RULE',_,_},Vars,_MainFile,Switch) -> - {Form,Vars,Switch}; -munge(Form={function,_,'MNEMOSYNE RECFUNDEF',_,_},Vars,_MainFile,Switch) -> - {Form,Vars,Switch}; munge({function,Line,Function,Arity,Clauses},Vars,_MainFile,on) -> Vars2 = Vars#vars{function=Function, arity=Arity, |