Uses of Class
org.jruby.ast.ListNode

Packages that use ListNode
org.jruby.ast   
 

Uses of ListNode in org.jruby.ast
 

Subclasses of ListNode in org.jruby.ast
 class ArrayNode
          Represents an array.
 class BlockNode
          Represents a block of nodes (read that as list).
 class DRegexpNode
          A regexp which contains some expressions which will need to be evaluated everytime the regexp is used for a match.
 class DStrNode
          A string which contains some dynamic elements which needs to be evaluated (introduced by #).
 class DSymbolNode
          Node representing symbol in a form like ':"3jane"'.
 class DXStrNode
          Dynamic backquote string.
 

Methods in org.jruby.ast that return ListNode
 ListNode ListNode.add(Node node)
           
 ListNode ListNode.addAll(ListNode other)
          Add all elements in other list to this list node.
 ListNode ListNode.addAll(Node other)
          Add other element to this list
 ListNode ArgsNode.getArgs()
          Gets main arguments (as Tokens)
 ListNode MultipleAsgnNode.getHeadNode()
          Gets the headNode.
 ListNode HashNode.getListNode()
          Gets the listNode.
 ListNode ArgsNode.getOptArgs()
          Gets the optArgs.
 ListNode ListNode.prepend(Node node)
           
 

Methods in org.jruby.ast with parameters of type ListNode
 ListNode ListNode.addAll(ListNode other)
          Add all elements in other list to this list node.
 

Constructors in org.jruby.ast with parameters of type ListNode
ArgsNode(ISourcePosition position, ListNode arguments, ListNode optionalArguments, int restArguments, ArgumentNode restArgNode, BlockArgNode blockArgNode)
           
HashNode(ISourcePosition position, ListNode listNode)
           
MultipleAsgnNode(ISourcePosition position, ListNode headNode, Node argsNode)
           
 



Copyright © 2002-2007 JRuby Team. All Rights Reserved.