| Previous | Next
Devel::SelfStubberGenerates stubs in a module that uses the SelfLoader, either printing the necessary stubs or generating the whole module with the stubs inserted in the correct location before the
stub (module[, dir]) Generates the stubs. Takes the following arguments:
To simply print the stubs: use Devel::SelfStubber; Devel::SelfStubber->stub( To generate the whole module, with the stubs inserted correctly, set the variable use Devel::SelfStubber; $Devel::SelfStubber::JUST_STUBS = 0; Devel::SelfStubber->stub( |