Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37566763
en ru br
Репозитории ALT

Группа :: Разработка/Perl
Пакет: perl-JavaScript-Minifier

 Главная   Изменения   Спек   Патчи   Исходники   Загрузить   Gear   Bugs and FR  Repocop 

pax_global_header00006660000000000000000000000064120751631510014513gustar00rootroot0000000000000052 comment=9f3edc54cd0428f0fdb0115dcb453f9a43b188fd
perl-JavaScript-Minifier-1.05/000075500000000000000000000000001207516315100162045ustar00rootroot00000000000000perl-JavaScript-Minifier-1.05/Changes000064400000000000000000000002571207516315100175030ustar00rootroot00000000000000Revision history for Perl extension JavaScript::Minifier.

0.01 Sat May 19 15:28:19 2007
- original version; created by h2xs 1.23 with options
-X -n JavaScript::Minifier

perl-JavaScript-Minifier-1.05/MANIFEST000064400000000000000000000013051207516315100173340ustar00rootroot00000000000000Changes
Makefile.PL
MANIFEST
README
lib/JavaScript/Minifier.pm
t/JavaScript-Minifier.t
t/scripts/s2.js
t/scripts/s2-expected.js
t/scripts/s3.js
t/scripts/s3-expected.js
t/scripts/s4.js
t/scripts/s4-expected.js
t/scripts/s5.js
t/scripts/s5-expected.js
t/scripts/s6.js
t/scripts/s6-expected.js
t/scripts/s7.js
t/scripts/s7-expected.js
t/scripts/s8.js
t/scripts/s8-expected.js
t/scripts/s9.js
t/scripts/s9-expected.js
t/scripts/s10.js
t/scripts/s10-expected.js
t/scripts/s11.js
t/scripts/s11-expected.js
t/scripts/s12.js
t/scripts/s12-expected.js
t/scripts/s13.js
t/scripts/s13-expected.js
t/scripts/s14.js
t/scripts/s14-expected.js
META.yml Module meta-data (added by MakeMaker)
perl-JavaScript-Minifier-1.05/META.yml000064400000000000000000000005051207516315100174550ustar00rootroot00000000000000# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: JavaScript-Minifier
version: 1.05
version_from: lib/JavaScript/Minifier.pm
installdirs: site
requires:

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.30_01
perl-JavaScript-Minifier-1.05/Makefile.PL000064400000000000000000000011001207516315100201460ustar00rootroot00000000000000use 5.8.0;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'JavaScript::Minifier',
VERSION_FROM => 'lib/JavaScript/Minifier.pm', # finds $VERSION
PREREQ_PM => {}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/JavaScript/Minifier.pm', # retrieve abstract from module
AUTHOR => 'Peter Michaux <petermichaux@gmail.com>') : ()),
);
perl-JavaScript-Minifier-1.05/README000064400000000000000000000012121207516315100170600ustar00rootroot00000000000000JavaScript-Minifier version 1.0
================================

Use this module to remove unnecessary whitespace from JavaScript code. See documentation in lib/JavaScript/Minifier.pm for more information.

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

COPYRIGHT AND LICENSE

Put the correct copyright and license information here.

Copyright (C) 2007 by Peter Michaux

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.6 or,
at your option, any later version of Perl 5 you may have available.


perl-JavaScript-Minifier-1.05/lib/000075500000000000000000000000001207516315100167525ustar00rootroot00000000000000perl-JavaScript-Minifier-1.05/lib/JavaScript/000075500000000000000000000000001207516315100210205ustar00rootroot00000000000000perl-JavaScript-Minifier-1.05/lib/JavaScript/Minifier.pm000064400000000000000000000327751207516315100231360ustar00rootroot00000000000000package JavaScript::Minifier;

use strict;
use warnings;

require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(minify);

our $VERSION = '1.05';

# -----------------------------------------------------------------------------

#return true if the character is allowed in identifier.
sub isAlphanum {
my $x = shift;
return ($x =~ /[\w\$\\]/ || ord($x) > 126);
}

sub isSpace {
my $x = shift;
return ($x eq ' ' || $x eq "\t");
}

sub isEndspace {
my $x = shift;
return ($x eq "\n" || $x eq "\r" || $x eq "\f");
}

sub isWhitespace {
my $x = shift;
return (isSpace($x) || isEndspace($x));
}

# New line characters before or after these characters can be removed.
# Not + - / in this list because they require special care.
sub isInfix {
my $x = shift;
$x =~ /[,;:=&%*<>\?\|\n]/;
}

# New line characters after these characters can be removed.
sub isPrefix {
my $x = shift;
return ($x =~ /[\{\(\[!]/ || isInfix($x));
}

# New line characters before these characters can removed.
sub isPostfix {
my $x = shift;
return ($x =~ /[\}\)\]]/ || isInfix($x));
}

# -----------------------------------------------------------------------------

sub _get {
my $s = shift;
if ($s->{inputType} eq 'file') {
return getc($s->{input});
}
elsif ($s->{inputType} eq 'string') {
if ($s->{'inputPos'} < length($s->{input})) {
return substr($s->{input}, $s->{inputPos}++, 1);
}
else { # Simulate getc() when off the end of the input string.
return undef;
}
}
else {
die "no input";
}
}

sub _put {
my $s = shift;
my $x = shift;
my $outfile = ($s->{outfile});
if (defined($s->{outfile})) {
print $outfile $x;
}
else {
$s->{output} .= $x;
}
}

# -----------------------------------------------------------------------------

# print a
# move b to a
# move c to b
# move d to c
# new d
#
# i.e. print a and advance
sub action1 {
my $s = shift;
if (!isWhitespace($s->{a})) {
$s->{lastnws} = $s->{a};
}
$s->{last} = $s->{a};
action2($s);
}

# sneeky output $s->{a} for comments
sub action2 {
my $s = shift;
_put($s, $s->{a});
action3($s);
}

# move b to a
# move c to b
# move d to c
# new d
#
# i.e. delete a
sub action3 {
my $s = shift;
$s->{a} = $s->{b};
action4($s);
}

# move c to b
# move d to c
# new d
#
# i.e. delete b
sub action4 {
my $s = shift;
$s->{b} = $s->{c};
$s->{c} = $s->{d};
$s->{d} = _get($s);
}

# -----------------------------------------------------------------------------

# put string and regexp literals
# when this sub is called, $s->{a} is on the opening delimiter character
sub putLiteral {
my $s = shift;
my $delimiter = $s->{a}; # ', " or /
action1($s);
do {
while (defined($s->{a}) && $s->{a} eq '\\') { # escape character only escapes only the next one character
action1($s);
action1($s);
}
action1($s);
} until ($s->{last} eq $delimiter || !defined($s->{a}));
if ($s->{last} ne $delimiter) { # ran off end of file before printing the closing delimiter
die 'unterminated ' . ($delimiter eq '\'' ? 'single quoted string' : $delimiter eq '"' ? 'double quoted string' : 'regular expression') . ' literal, stopped';
}
}

# -----------------------------------------------------------------------------

# If $s->{a} is a whitespace then collapse all following whitespace.
# If any of the whitespace is a new line then ensure $s->{a} is a new line
# when this function ends.
sub collapseWhitespace {
my $s = shift;
while (defined($s->{a}) && isWhitespace($s->{a}) &&
defined($s->{b}) && isWhitespace($s->{b})) {
if (isEndspace($s->{a}) || isEndspace($s->{b})) {
$s->{a} = "\n";
}
action4($s); # delete b
}
}

# Advance $s->{a} to non-whitespace or end of file.
# Doesn't print any of this whitespace.
sub skipWhitespace {
my $s = shift;
while (defined($s->{a}) && isWhitespace($s->{a})) {
action3($s);
}
}

# Advance $s->{a} to non-whitespace or end of file
# If any of the whitespace is a new line then print one new line.
sub preserveEndspace {
my $s = shift;
collapseWhitespace($s);
if (defined($s->{a}) && isEndspace($s->{a}) && defined($s->{b}) && !isPostfix($s->{b}) ) {
action1($s);
}
skipWhitespace($s);
}

sub onWhitespaceConditionalComment {
my $s = shift;
return (defined($s->{a}) && isWhitespace($s->{a}) &&
defined($s->{b}) && $s->{b} eq '/' &&
defined($s->{c}) && ($s->{c} eq '/' || $s->{c} eq '*') &&
defined($s->{d}) && $s->{d} eq '@');
}

# -----------------------------------------------------------------------------

sub minify {
my %h = @_;
# Immediately turn hash into a hash reference so that notation is the same in this function
# as others. Easier refactoring.
my $s = \%h; # hash reference for "state". This module is functional programming and the state is passed between functions.

# determine if the the input is a string or a file handle.
my $ref = \$s->{input};
if (defined($ref) && ref($ref) eq 'SCALAR'){
$s->{inputPos} = 0;
$s->{inputType} = 'string';
}
else {
$s->{inputType} = 'file';
}

# Determine if the output is to a string or a file.
if (!defined($s->{outfile})) {
$s->{output} = '';
}

# Print the copyright notice first
if ($s->{copyright}) {
_put($s, '/* ' . $s->{copyright} . ' */');
}

# Initialize the buffer.
do {
$s->{a} = _get($s);
} while (defined($s->{a}) && isWhitespace($s->{a}));
$s->{b} = _get($s);
$s->{c} = _get($s);
$s->{d} = _get($s);
$s->{last} = undef; # assign for safety
$s->{lastnws} = undef; # assign for safety

# local variables
my $ccFlag; # marks if a comment is an Internet Explorer conditional comment and should be printed to output

while (defined($s->{a})) { # on this line $s->{a} should always be a non-whitespace character or undef (i.e. end of file)

if (isWhitespace($s->{a})) { # check that this program is running correctly
die 'minifier bug: minify while loop starting with whitespace, stopped';
}

# Each branch handles trailing whitespace and ensures $s->{a} is on non-whitespace or undef when branch finishes
if ($s->{a} eq '/') { # a division, comment, or regexp literal
if (defined($s->{b}) && $s->{b} eq '/') { # slash-slash comment
$ccFlag = defined($s->{c}) && $s->{c} eq '@'; # tests in IE7 show no space allowed between slashes and at symbol
do {
$ccFlag ? action2($s) : action3($s);
} until (!defined($s->{a}) || isEndspace($s->{a}));
if (defined($s->{a})) { # $s->{a} is a new line
if ($ccFlag) {
action1($s); # cannot use preserveEndspace($s) here because it might not print the new line
skipWhitespace($s);
}
elsif (defined($s->{last}) && !isEndspace($s->{last}) && !isPrefix($s->{last})) {
preserveEndspace($s);
}
else {
skipWhitespace($s);
}
}
}
elsif (defined($s->{b}) && $s->{b} eq '*') { # slash-star comment
$ccFlag = defined($s->{c}) && $s->{c} eq '@'; # test in IE7 shows no space allowed between star and at symbol
do {
$ccFlag ? action2($s) : action3($s);
} until (!defined($s->{b}) || ($s->{a} eq '*' && $s->{b} eq '/'));
if (defined($s->{b})) { # $s->{a} is asterisk and $s->{b} is foreslash
if ($ccFlag) {
action2($s); # the *
action2($s); # the /
# inside the conditional comment there may be a missing terminal semi-colon
preserveEndspace($s);
}
else { # the comment is being removed
action3($s); # the *
$s->{a} = ' '; # the /
collapseWhitespace($s);
if (defined($s->{last}) && defined($s->{b}) &&
((isAlphanum($s->{last}) && (isAlphanum($s->{b})||$s->{b} eq '.')) ||
($s->{last} eq '+' && $s->{b} eq '+') || ($s->{last} eq '-' && $s->{b} eq '-'))) { # for a situation like 5-/**/-2 or a/**/a
# When entering this block $s->{a} is whitespace.
# The comment represented whitespace that cannot be removed. Therefore replace the now gone comment with a whitespace.
action1($s);
}
elsif (defined($s->{last}) && !isPrefix($s->{last})) {
preserveEndspace($s);
}
else {
skipWhitespace($s);
}
}
}
else {
die 'unterminated comment, stopped';
}
}
elsif (defined($s->{lastnws}) && ($s->{lastnws} eq ')' || $s->{lastnws} eq ']' ||
$s->{lastnws} eq '.' || isAlphanum($s->{lastnws}))) { # division
action1($s);
collapseWhitespace($s);
# don't want a division to become a slash-slash comment with following conditional comment
onWhitespaceConditionalComment($s) ? action1($s) : preserveEndspace($s);
}
else { # regexp literal
putLiteral($s);
collapseWhitespace($s);
# don't want closing delimiter to become a slash-slash comment with following conditional comment
onWhitespaceConditionalComment($s) ? action1($s) : preserveEndspace($s);
}
}
elsif ($s->{a} eq '\'' || $s->{a} eq '"' ) { # string literal
putLiteral($s);
preserveEndspace($s);
}
elsif ($s->{a} eq '+' || $s->{a} eq '-') { # careful with + + and - -
action1($s);
collapseWhitespace($s);
if (defined($s->{a}) && isWhitespace($s->{a})) {
(defined($s->{b}) && $s->{b} eq $s->{last}) ? action1($s) : preserveEndspace($s);
}
}
elsif (isAlphanum($s->{a})) { # keyword, identifiers, numbers
action1($s);
collapseWhitespace($s);
if (defined($s->{a}) && isWhitespace($s->{a})) {
# if $s->{b} is '.' could be (12 .toString()) which is property invocation. If space removed becomes decimal point and error.
(defined($s->{b}) && (isAlphanum($s->{b}) || $s->{b} eq '.')) ? action1($s) : preserveEndspace($s);
}
}
elsif ($s->{a} eq ']' || $s->{a} eq '}' || $s->{a} eq ')') { # no need to be followed by space but maybe needs following new line
action1($s);
preserveEndspace($s);
}
elsif ($s->{stripDebug} && $s->{a} eq ';' &&
defined($s->{b}) && $s->{b} eq ';' &&
defined($s->{c}) && $s->{c} eq ';') {
action3($s); # delete one of the semi-colons
$s->{a} = '/'; # replace the other two semi-colons
$s->{b} = '/'; # so the remainder of line is removed
}
else { # anything else just prints and trailing whitespace discarded
action1($s);
skipWhitespace($s);
}
}

if (!defined($s->{outfile})) {
return $s->{output};
}

} # minify()

# -----------------------------------------------------------------------------

1;
__END__


=head1 NAME

JavaScript::Minifier - Perl extension for minifying JavaScript code


=head1 SYNOPSIS

To minify a JavaScript file and have the output written directly to another file

use JavaScript::Minifier qw(minify);
open(INFILE, 'myScript.js') or die;
open(OUTFILE, '>myScript-min.js') or die;
minify(input => *INFILE, outfile => *OUTFILE);
close(INFILE);
close(OUTFILE);

To minify a JavaScript string literal. Note that by omitting the outfile parameter a the minified code is returned as a string.

my minifiedJavaScript = minify(input => 'var x = 2;');

To include a copyright comment at the top of the minified code.

minify(input => 'var x = 2;', copyright => 'BSD License');

To treat ';;;' as '//' so that debugging code can be removed. This is a common JavaScript convention for minification.

minify(input => 'var x = 2;', stripDebug => 1);

The "input" parameter is manditory. The "output", "copyright", and "stripDebug" parameters are optional and can be used in any combination.


=head1 DESCRIPTION

This module removes unnecessary whitespace from JavaScript code. The primary requirement developing this module is to not break working code: if working JavaScript is in input then working JavaScript is output. It is ok if the input has missing semi-colons, snips like '++ +' or '12 .toString()', for example. Internet Explorer conditional comments are copied to the output but the code inside these comments will not be minified.

The ECMAScript specifications allow for many different whitespace characters: space, horizontal tab, vertical tab, new line, carriage return, form feed, and paragraph separator. This module understands all of these as whitespace except for vertical tab and paragraph separator. These two types of whitespace are not minimized.

For static JavaScript files, it is recommended that you minify during the build stage of web deployment. If you minify on-the-fly then it might be a good idea to cache the minified file. Minifying static files on-the-fly repeatedly is wasteful.


=head2 EXPORT

None by default.

Exportable on demand: minifiy()


=head1 SEE ALSO

This project is developed using an SVN repository. To check out the repository
svn co http://dev.michaux.ca/svn/random/JavaScript-Minifier

This module is inspired by Douglas Crockford's JSMin:
http://www.crockford.com/javascript/jsmin.html

You may also be interested in the CSS::Minifier module also available on CPAN.


=head1 AUTHORS

Peter Michaux, E<lt>petermichaux@gmail.comE<gt>
Eric Herrera, E<lt>herrera@10east.comE<gt>


=head1 COPYRIGHT AND LICENSE

Copyright (C) 2007 by Peter Michaux

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.6 or,
at your option, any later version of Perl 5 you may have available.
perl-JavaScript-Minifier-1.05/t/000075500000000000000000000000001207516315100164475ustar00rootroot00000000000000perl-JavaScript-Minifier-1.05/t/JavaScript-Minifier.t000064400000000000000000000042731207516315100224500ustar00rootroot00000000000000# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl JavaScript-Minifier.t'

#########################

use Test::More tests => 17;
BEGIN { use_ok('JavaScript::Minifier', qw(minify)) };

#########################

sub filesMatch {
my $file1 = shift;
my $file2 = shift;
my $a;
my $b;

while (1) {
$a = getc($file1);
$b = getc($file2);

if (!defined($a) && !defined($b)) { # both files end at same place
return 1;
}
elsif (!defined($b) || # file2 ends first
!defined($a) || # file1 ends first
$a ne $b) { # a and b not the same
return 0;
}
}
}

sub minTest {
my $filename = shift;

open(INFILE, 't/scripts/' . $filename . '.js') or die("couldn't open file");
open(GOTFILE, '>t/scripts/' . $filename . '-got.js') or die("couldn't open file");
minify(input => *INFILE, outfile => *GOTFILE);
close(INFILE);
close(GOTFILE);

open(EXPECTEDFILE, 't/scripts/' . $filename . '-expected.js') or die("couldn't open file");
open(GOTFILE, 't/scripts/' . $filename . '-got.js') or die("couldn't open file");
ok(filesMatch(GOTFILE, EXPECTEDFILE));
close(EXPECTEDFILE);
close(GOTFILE);
}

BEGIN {

minTest('s2', 'testing s2'); # missing semi-colons
minTest('s3', 'testing s3'); # //@
minTest('s4', 'testing s4'); # /*@*/
minTest('s5', 'testing s5'); # //
minTest('s6', 'testing s6'); # /**/
minTest('s7', 'testing s7'); # blocks of comments
minTest('s8', 'testing s8'); # + + - -
minTest('s9', 'testing s9'); # alphanum
minTest('s10', 'testing s10'); # }])
minTest('s11', 'testing s11'); # string and regexp literals
minTest('s12', 'testing s12'); # other characters
minTest('s13', 'testing s13'); # comment at start
minTest('s14', 'testing s14'); # slash following square bracket is division not RegExp

is(minify(input => 'var x = 2;'), 'var x=2;', 'string literal input and ouput');
is(minify(input => "var x = 2;\n;;;alert('hi');\nvar x = 2;", stripDebug => 1), 'var x=2;var x=2;', 'scriptDebug option');
is(minify(input => 'var x = 2;', copyright => "BSD"), '/* BSD */var x=2;', 'copyright option');

}perl-JavaScript-Minifier-1.05/t/scripts/000075500000000000000000000000001207516315100201365ustar00rootroot00000000000000perl-JavaScript-Minifier-1.05/t/scripts/s10-expected.js000064400000000000000000000000361207516315100226750ustar00rootroot00000000000000}}]})}/*@cc_on asdf */))]}]]])perl-JavaScript-Minifier-1.05/t/scripts/s10.js000064400000000000000000000000651207516315100211000ustar00rootroot00000000000000}
}
]
} /*asdf*/
)
} /*@cc_on asdf */
)
)
]
}
]
]
]
)perl-JavaScript-Minifier-1.05/t/scripts/s11-expected.js000064400000000000000000000000601207516315100226730ustar00rootroot00000000000000" a \" a \n \\\\"
' a \' a \n \\\\'
/a \. a\\\\/perl-JavaScript-Minifier-1.05/t/scripts/s11.js000064400000000000000000000000761207516315100211030ustar00rootroot00000000000000 " a \" a \n \\\\"
' a \' a \n \\\\'
/a \. a\\\\/
perl-JavaScript-Minifier-1.05/t/scripts/s12-expected.js000064400000000000000000000000161207516315100226750ustar00rootroot00000000000000!^&*({[=|:<>?~perl-JavaScript-Minifier-1.05/t/scripts/s12.js000064400000000000000000000001041207516315100210740ustar00rootroot00000000000000
!
^
&
*
(
{

[
=
|
:
<
>
?
~
perl-JavaScript-Minifier-1.05/t/scripts/s13-expected.js000064400000000000000000000000101207516315100226700ustar00rootroot00000000000000var x=2;perl-JavaScript-Minifier-1.05/t/scripts/s13.js000064400000000000000000000000261207516315100211000ustar00rootroot00000000000000/* foo */

var x = 2;perl-JavaScript-Minifier-1.05/t/scripts/s14-expected.js000064400000000000000000000000111207516315100226720ustar00rootroot00000000000000foo[5]/14perl-JavaScript-Minifier-1.05/t/scripts/s14.js000064400000000000000000000000131207516315100210750ustar00rootroot00000000000000foo[5] / 14perl-JavaScript-Minifier-1.05/t/scripts/s2-expected.js000064400000000000000000000000401207516315100226110ustar00rootroot00000000000000function(){var x=21
var y=33
[]}perl-JavaScript-Minifier-1.05/t/scripts/s2.js000064400000000000000000000001051207516315100210140ustar00rootroot00000000000000// missing semi-colons
function () {
var x = 21
var y = 33
[]
}perl-JavaScript-Minifier-1.05/t/scripts/s3-expected.js000064400000000000000000000001671207516315100226240ustar00rootroot00000000000000var x=1//@a
/2//@a
/ //@a
2
/a/a;//@a
/regexp/ //@a
/regexp/;//@a
a+//@a
++a;//@a
a-//@a
--a;a//@a
a;a3//@a
.aperl-JavaScript-Minifier-1.05/t/scripts/s3.js000064400000000000000000000002011207516315100210120ustar00rootroot00000000000000var x = 1//@a

/ 2//@a

/ //@a
2

/a/a;//@a

/regexp/ //@a

/regexp/;//@a
a +//@a
++a;//@a
a -//@a
--a;a//@a
a;a3//@a
.aperl-JavaScript-Minifier-1.05/t/scripts/s4-expected.js000064400000000000000000000002031207516315100226140ustar00rootroot00000000000000var x=1/*@a*/
/2/*@a*/
/ /*@a*/
2
/a/a;/*@a*/
2/*@a*//2;/regexp/ /*@a*/
/regexp/;/*@a*/
a+/*@a*/++a;a-/*@a*/--a;a/*@a*/a;a3/*@a*/.aperl-JavaScript-Minifier-1.05/t/scripts/s4.js000064400000000000000000000002271207516315100210230ustar00rootroot00000000000000var x = 1/*@a*/

/ 2/*@a*/

/ /*@a*/
2

/a/a;/*@a*/

2 /*@a*/ / 2;

/regexp/ /*@a*/

/regexp/;/*@a*/
a +/*@a*/++a;a -/*@a*/--a;a/*@a*/a;a3/*@a*/.aperl-JavaScript-Minifier-1.05/t/scripts/s5-expected.js000064400000000000000000000000771207516315100226260ustar00rootroot00000000000000var x=foo
/2
/
2
/a/a;/regexp/
/regexp/;a+
++a;a-
--a;a
a;a3
.aperl-JavaScript-Minifier-1.05/t/scripts/s5.js000064400000000000000000000001711207516315100210220ustar00rootroot00000000000000var x = foo//a

/ 2//a

/ //a

2

/a/a;//a

/regexp/ //a

/regexp/;//a
a +//a
++a;//a
a -//a
--a;a//a
a;a3//a
.aperl-JavaScript-Minifier-1.05/t/scripts/s6-expected.js000064400000000000000000000001011207516315100226130ustar00rootroot00000000000000var x=1
/2
/
2
/a/a;2/2;/regexp/
/regexp/;a+ ++a;a- --a;a a;a3 .aperl-JavaScript-Minifier-1.05/t/scripts/s6.js000064400000000000000000000002261207516315100210240ustar00rootroot00000000000000var x = 1/*a*/

/ 2/*a*/

/ /*a*/

2/*a*/

/a/a;/*a*/

2 /*a*/ / 2;

/regexp/ /*a*/

/regexp/;/*a*/
a +/*a*/++a;a -/*a*/--a;a/*a*/a;a3/*a*/.aperl-JavaScript-Minifier-1.05/t/scripts/s7-expected.js000064400000000000000000000000631207516315100226230ustar00rootroot00000000000000var x=1;//@ a
//@ a
//@ a
/*@*//*@*/
/*@*/
var x=1;perl-JavaScript-Minifier-1.05/t/scripts/s7.js000064400000000000000000000004451207516315100210300ustar00rootroot00000000000000var x = 1; /*asdf*/
/*asdf*/
/*asdf*/
/*asdf*/
// aaaaa
//@ a
/**/
//
//@ a
//@ a
/*@*//**//*@*/
/*@*/

/* asdfasdf asdf asdf
* asdfasdfa
* asdfasdfa
*//**/

/* asdfasdf asdf asdf
* asdfasdfa
* asdfasdfa
*/

var x = 1;

perl-JavaScript-Minifier-1.05/t/scripts/s8-expected.js000064400000000000000000000000111207516315100226150ustar00rootroot00000000000000- --+ ++-perl-JavaScript-Minifier-1.05/t/scripts/s8.js000064400000000000000000000000131207516315100210200ustar00rootroot00000000000000- -- + ++ -perl-JavaScript-Minifier-1.05/t/scripts/s9-expected.js000064400000000000000000000000311207516315100226200ustar00rootroot00000000000000asdf asdf
12 .toString();perl-JavaScript-Minifier-1.05/t/scripts/s9.js000064400000000000000000000000371207516315100210270ustar00rootroot00000000000000 asdf asdf
12 .toString();

 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin