-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
35 lines (22 loc) · 973 Bytes
/
README
File metadata and controls
35 lines (22 loc) · 973 Bytes
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
33
JavaScript-Runtime-OpcodeCounting
=================================
This module provides an extended JavaScript::Runtime class that keeps track on how many opcodes
are executed by the runtime. It can also be set to abort execution when N number of opcodes have
been executed by setting an upper limit.
Currently both the counter and the limit are implemented as U32 values. If lots, and I mean *lots*,
of opcodes are executed without resetting the counter it will eventually overflow.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules and libraries:
JavaScript (1.02 or later)
Test::More
Test::Warn
COPYRIGHT AND LICENCE
Copyright (c) 2007, Claes Jakobsson <claesjac@cpan.org>. All rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See "perldoc perlartistic".