Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

See update at EOM.

Hi monks,

I just lately started to OOPify the module I've been working on when I decided I'd go the full hog and Mooseify it.

Before, I was using something like this as a shorthand in the parser to make a node of some type:

sub new_node { my ($kind, @args) = @_; do { no strict 'refs'; my $class = "Erlang::Parser::Node::$kind"; &{"${class}::new"}($class, @args) } }

I'm not sure if this is ideal (if not, please do tell!), but it's even less ideal now as I'm getting this with Moose:

Undefined subroutine &Erlang::Parser::Node::Atom::new called at lib/Erlang/Parser/Parser.yp line 33, <DATA> line 1.

If I call new as an actual OO call on the module, it works fine:

my $a = Erlang::Parser::Node::Atom->new(atom => 'xyz'); # sure thing

I'm guessing this is because I don't actually define a new in my own classes (and leave that to Moose), so Erlang::Parser::Node::Whatever::new really doesn't exist!

There is probably some Moose magic I'm missing that I could use to get around this, but I'm still looking! Any wisdom would be very appreciated.

Anneli

Update: ooo... kay. Apparently I missed the most obvious solution of all:

sub new_node { my ($kind, %args) = @_; "Erlang::Parser::Node::$kind"->new(%args); }

I have much to learn.


In reply to Making a new object of an undecided class with Moose by anneli

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-16 07:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found