Well, method $obj $arg; would be an error. Update: Actually, that's not an error at all. rir++ for the catch. I updated the next paragraph to reflect this.

You can't distinguish between

method( $obj, $arg); $obj->method( $arg); method $obj $arg;
because they are simply all instance methods. The last two listed there act just like the first one.

Similarly, you can't distinguish between

"Classname"->method( $arg); method "Classname" $arg; method( "Classname", $arg);
because they are all class methods. The first two act just like the last one. Update: Poor assumptions made there. See rir's reply and mine to him for more insight. Otherwise, replace those examples with:
Class->method($arg); method Class $arg; Class::method("Class", $arg);

You can determine if the method was called as a class method or an instance method by checking the refness of the first argument but you can't determine the exact syntax.

Update: Sorry for the mess. As I understand the question, you want to know if, for example, a method can know whether it was invoked via indirect object notation, a normal sub call, or with the arrow operator. My answer: a very long "no."
-sauoq
"My two cents aren't worth a dime.";

In reply to Re: How called was &I? by sauoq
in thread How called was &I? by rir

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.