org.jruby.ast
Class FCallNode

java.lang.Object
  extended byorg.jruby.ast.AbstractNode
      extended byorg.jruby.ast.FCallNode
All Implemented Interfaces:
INode, java.io.Serializable

public final class FCallNode
extends AbstractNode

Represents a method call with self as receiver.

Version:
$Revision: 1.6 $
Author:
jpetersen
See Also:
Serialized Form

Constructor Summary
FCallNode(ISourcePosition position, java.lang.String name, IListNode argsNode)
           
 
Method Summary
 void accept(INodeVisitor iVisitor)
          Accept for the visitor pattern.
 IListNode getArgsNode()
          Gets the argsNode.
 java.lang.String getName()
          Gets the name.
 
Methods inherited from class org.jruby.ast.AbstractNode
getPosition
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FCallNode

public FCallNode(ISourcePosition position,
                 java.lang.String name,
                 IListNode argsNode)
Method Detail

accept

public void accept(INodeVisitor iVisitor)
Accept for the visitor pattern.

Parameters:
iVisitor - the visitor

getArgsNode

public IListNode getArgsNode()
Gets the argsNode.

Returns:
Returns a INode

getName

public java.lang.String getName()
Gets the name.

Returns:
Returns a String


Copyright © 2002 Jan Arne Petersen. All Rights Reserved.