Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

8.55. Devel::SelfStubber


Generates
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 _ _DATA_
_
token. The default is to simply print the stubs.


stub (module[, dir])

Generates the stubs. Takes the following
arguments:


module

Name of the module, in the form Devel::SelfStubber (with no
.pm at the end).


dir

Library directory that contains the module. Defaults to the current
directory.


To simply print the stubs:

use Devel::SelfStubber;
Devel::SelfStubber->stub(module, dir);

To generate the whole module, with the stubs inserted correctly, set
the variable $Devel::SelfStubber::JUST_STUBS to
0:

use Devel::SelfStubber;
$Devel::SelfStubber::JUST_STUBS = 0;
Devel::SelfStubber->stub(module, dir);

/ 875