search for: c13322b5

Displaying 1 result from an estimated 1 matches for "c13322b5".

2017 Mar 21
3
Functions accessible from a function
Hello everybody, I am trying to do some static analysis, e.g. find which other functions accessible from a function. Current naive implementation goes over each instruction and whether it is a call site or not. It works great so far, but there are some cases where it doesn’t work. For example: declare no_source(function: f) // uses f internally define foo() { ... } define bar() { ... }