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
          A structuring node (linked list of other nodes).
 class DRegexpNode
          Dynamic regexp node.
 class DStrNode
          a Dynamic String node.
 class DSymbolNode
          Node representing symbol in a form like ':"3jane"'.
 class DXStrNode
          Dynamic backquote string.
 

Methods in org.jruby.ast that return ListNode
 ListNode ArgsNode.getArgs()
          Gets main arguments (as Tokens)
 ListNode ArgsNode.getOptArgs()
          Gets the optArgs.
 ListNode HashNode.getListNode()
          Gets the listNode.
 ListNode ListNode.add(Node node)
           
 ListNode ListNode.prepend(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 MultipleAsgnNode.getHeadNode()
          Gets the headNode.
 

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.