Mango::BSON::Code(3pm) | User Contributed Perl Documentation | Mango::BSON::Code(3pm) |
NAME
Mango::BSON::Code - Code type
SYNOPSIS
use Mango::BSON::Code; my $code = Mango::BSON::Code->new(code => 'function () {}');
DESCRIPTION
Mango::BSON::Code is a container for the BSON code type used by Mango::BSON.
ATTRIBUTES
Mango::BSON::Code implements the following attributes.
code
my $js = $code->code; $code = $code->code('function () {}');
JavaScript code.
scope
my $scode = $code->scope; $code = $code->scope({foo => 'bar'});
Scope.
METHODS
Mango::BSON::Code inherits all methods from Mojo::Base.
SEE ALSO
Mango, Mojolicious::Guides, <http://mojolicio.us>.
2020-06-05 | perl v5.30.3 |