Yoba Perl
code.cpp
1 #include "yobaperl/code.hpp"
2 #include "yobaperl/perl.hpp"
3 
4 namespace yoba {
5 
6 
7 
8 Code::Code(Perl & perl, CV * cv, bool increase_refcount)
9  : Variable(perl, reinterpret_cast<SV *>(cv), increase_refcount)
10 {
11 }
12 
13 
14 
15 std::string Code::toString() const
16 {
17  return getPerl().deparse(*this);
18 }
19 
21 {
22  return Scalar(_perl, newRV_inc(getSV()), false);
23 }
24 
25 
26 
27 CV * Code::getCV() const
28 {
29  return reinterpret_cast<CV *>(getSV());
30 }
31 
32 
33 
34 } // namespace yoba
std::string deparse(const Code &code)
Convert subroutine to string using B::Deparse.
Definition: perl.cpp:338
SV * getSV() const
Get raw scalar.
Definition: variable.cpp:63
Definition: array.cpp:5
Perl & getPerl() const
Get Perl instance.
Definition: variable.cpp:46
Code(Perl &perl, CV *cv, bool increase_refcount)
Constructor.
Definition: code.cpp:8
std::string toString() const
Convert to C++ string.
Definition: code.cpp:15
Base class for perl variables.
Definition: variable.hpp:20
CV * getCV() const
Raw subroutine.
Definition: code.cpp:27
Main class.
Definition: perl.hpp:32
Scalar reference
Definition: scalar.hpp:24
Scalar makeRef() const
Take reference.
Definition: code.cpp:20