line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package JavaScript::Code::Expression::Node;
|
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
10
|
use strict;
|
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
57
|
|
4
|
2
|
|
|
2
|
|
9
|
use vars qw[ $VERSION ];
|
|
2
|
|
|
|
|
17
|
|
|
2
|
|
|
|
|
65
|
|
5
|
2
|
|
|
2
|
|
9
|
use base qw[ JavaScript::Code::Accessor ];
|
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
255
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
$VERSION = '0.08';
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
JavaScript::Code::Expression::Node - Represents a Node in JavaScript Expression
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 METHODS
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
I
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SEE ALSO
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
L
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 AUTHOR
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Sascha Kiefer, C
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 LICENSE
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This library is free software, you can redistribute it and/or modify it under
|
28
|
|
|
|
|
|
|
the same terms as Perl itself.
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=cut
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
1;
|