Method: Rex::PeParsey::PeBase#exports
- Defined in:
- lib/rex/peparsey/pebase.rb
#exports ⇒ Object
We lazily parse the exports, and then cache it
1371 1372 1373 1374 1375 1376 1377 |
# File 'lib/rex/peparsey/pebase.rb', line 1371 def exports if !_exports_cached self._exports_cache = _load_exports self._exports_cached = true end return _exports_cache end |