diff options
-rwxr-xr-x | src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -77,6 +77,11 @@ impl Builder { self } + pub fn whitelisted_function<T: Into<String>>(mut self, arg: T) -> Builder { + self.options.whitelisted_functions.insert(&arg.into()); + self + } + pub fn raw_line<T: Into<String>>(mut self, arg: T) -> Builder { self.options.raw_lines.push(arg.into()); self |