File: Engine.pm

package info (click to toggle)
libje-perl 0.066-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,008 kB
  • sloc: perl: 31,288; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 753 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package JavaScript::Engine;

our $VERSION = '0.066';

use JE;

=head1 NAME

JavaScript::Engine - Pure-Perl ECMAScript (JavaScript) engine

=head1 DESCRIPTION

This is just a pointer to L<JE>, a pure-Perl JS engine.

"JE" stands for 
JavaScript::Engine. I named it this, following the example of PPI, to avoid
long class names like JavaScript::Engine::Object::Error::ReferenceError,
which I thought would be a little ridiculous, and also time-consuming to
type.

I included this module
in the JE distribution so that
one might be able to find JE when typing C<i /javascript/> in the CPAN
shell or when looking under modules/by-module/JavaScript/ on the CPAN.

=head1 AUTHOR

Father Chrysostomos <sprout at cpan.org>

=cut

1; # End of JavaScript::Engine