line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTML::WidgetValidator::Widget::CubeDrivingGame;
|
2
|
1
|
|
|
1
|
|
6
|
use strict;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
3
|
1
|
|
|
1
|
|
5
|
use warnings;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
27
|
|
4
|
1
|
|
|
1
|
|
5
|
use base qw(HTML::WidgetValidator::Widget);
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
140
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.01';
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
__PACKAGE__->name('CUBE DRIVING GAME');
|
9
|
|
|
|
|
|
|
__PACKAGE__->url('http://blog.nissan.co.jp/CUBE/CREATES/2006/03/100orange_2.shtml#seal4');
|
10
|
|
|
|
|
|
|
__PACKAGE__->models([
|
11
|
|
|
|
|
|
|
[
|
12
|
|
|
|
|
|
|
{
|
13
|
|
|
|
|
|
|
"name" => "script",
|
14
|
|
|
|
|
|
|
"type" => "start",
|
15
|
|
|
|
|
|
|
"attr" => {
|
16
|
|
|
|
|
|
|
"src" => "http://www.nissan.co.jp/CUBE/PARTS/DRIVING_BLOG/driving_blog.js",
|
17
|
|
|
|
|
|
|
"type" => "text/javascript"
|
18
|
|
|
|
|
|
|
}
|
19
|
|
|
|
|
|
|
},
|
20
|
|
|
|
|
|
|
{
|
21
|
|
|
|
|
|
|
"name" => "script",
|
22
|
|
|
|
|
|
|
"type" => "end"
|
23
|
|
|
|
|
|
|
}
|
24
|
|
|
|
|
|
|
]
|
25
|
|
|
|
|
|
|
]);
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1;
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__END__
|