Changes between Version 20 and Version 21 of howto


Ignore:
Timestamp:
May 20, 2021, 4:12:10 PM (4 years ago)
Author:
tothm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • howto

    v20 v21  
    179179 * {{{mods.funs[.calls[name=format, module=io]]}}} -- list the function that contains io:format calls 
    180180 * {{{mods[.funs.calls[name=format, module=io]]}}} -- list the modules that contains io:format calls 
    181  * {{{mods[name~\"xyz\"][.funs.calls[module~\"[^xyz].*\"]]}}} -- list all the modules staring with xyz that contains calls to modules that are not starting with xyz 
     181 * {{{mods[name~"xyz."][.funs.calls[not (module~"xyz.*")]]}}} -- list all the modules staring with xyz that contains calls to modules that are not starting with xyz 
     182 * {{{mods[name~"xyz.*"].funs[.calls[not ((module~"xzy.*") or (module in | erlang,lists |)) ]]}}} -- the same as before. but allowing a few library modules 
    182183 * {{{mods.funs.exprs.sub[type=integer, not .macro]}}} -- list the integers that are not defined in a macro 
    183  * {{{mods.funs.vars[name~\"atom\"], mods.funs.vars[name~\"string\"], mods.funs.vars[name~\"list\"]}}} -- list variable names containing the text atom, string, list, etc.. 
     184 * {{{mods.funs.vars[name~"atom"], mods.funs.vars[name~"string"], mods.funs.vars[name~"list"]}}} -- list variable names containing the text atom, string, list, etc.. 
    184185 * {{{mods.funs.exprs.sub[type=tuple,[.sub[index>5]]]}}} -- list big tuples 
    185186 * {{{mods.funs[.exprs.sub[type=tuple,[.sub[index>5]]]]}}} -- list functions containing big tuples