Search:
Help/Guide
About Trac
Preferences
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 13
and
Version 14
of
Perl
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
10/19/06 10:25:15 (
18 years
ago)
Author:
atzm
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
Perl
v13
v14
434
434
}}}
435
435
* こういうのもあるらしい http://www.kawa.net/works/perl/i18n-emoji/EntityRef.pm.html
436
437
== スタックトレース関連 ==
438
* 基本的には Carp モジュールを利用する
439
440
=== 予期せぬエラーにスタックバックトレースをつけてくれ宣言 ===
441
* die を置き換えてやれば良い
442
{{{
443
#!perl
444
use Carp;
445
$SIG{__DIE__} = \&Carp::confess;
446
}}}