Method: Rex::PeParsey::PeBase#imports
- Defined in:
- lib/rex/peparsey/pebase.rb
#imports ⇒ Object
We lazily parse the imports, and then cache it
1300 1301 1302 1303 1304 1305 1306 |
# File 'lib/rex/peparsey/pebase.rb', line 1300 def imports if !_imports_cached self._imports_cache = _load_imports self._imports_cached = true end return _imports_cache end |