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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
package JavaScript::QuickJS::RegExp;
use strict;
use warnings;
=encoding utf-8
=head1 NAME
JavaScript::QuickJS::RegExp - JavaScript `RegExp` in Perl
=head1 SYNOPSIS
my $regexp = JavaScript::QuickJS->new()->eval("/foo/");
if ($regexp->test('fo')) {
# This won’t run because test() will return falsy.
}
=head1 DESCRIPTION
This class represents a JavaScript
L<RegExp|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp>
instance in Perl.
This class is not instantiated directly.
=head1 METHODS
The following methods correspond to their JS equivalents:
=over
=item * C<exec()>
=item * C<test()>
=back
In addition, the following methods return their corresponding JS property:
=over
=item * C<flags()>
=item * C<dotAll()>
=item * C<global()>
=item * C<hasIndices()>
=item * C<ignoreCase()>
=item * C<multiline()>
=item * C<source()>
=item * C<sticky()>
=item * C<unicode()>
=item * C<lastIndex()>
=back
=cut
1;
|