2018-01-11 03:35:35 -08:00
|
|
|
use "lib/metaprogramming.nom"
|
|
|
|
use "lib/control_flow.nom"
|
|
|
|
use "lib/operators.nom"
|
|
|
|
use "lib/collections.nom"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-11 03:35:35 -08:00
|
|
|
action [called by %whitelist]:
|
2017-12-04 17:35:47 -08:00
|
|
|
if ((%whitelist's "type") != "List"): %whitelist = [%whitelist]
|
|
|
|
%defs = (..)
|
|
|
|
dict ([(nomsu's "defs")->(nomsu "get_stub" [%]), yes] for all %whitelist)
|
|
|
|
for %caller in (nomsu's "callstack"):
|
|
|
|
if (%caller == "#macro"): do next %caller
|
|
|
|
if (%defs -> (nomsu "get_stub" [%caller's 1])): return (yes)
|
|
|
|
return (no)
|
2017-10-08 15:06:05 -07:00
|
|
|
|
2017-12-04 17:35:47 -08:00
|
|
|
parse [fail unless called by %whitelist] as:
|
|
|
|
unless (called by %whitelist): error "Failed to find \(%whitelist) in callstack."
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
|