Home | History | Annotate | Download | only in antlr3

Lines Matching defs:CommonTree

130     return( CommonTree.new( tk ) )
448 =begin rdoc ANTLR3::AST::CommonTree
452 A CommonTree object is a tree node that wraps a token <i>payload</i> (or a +nil+
472 class CommonTree < BaseTree
479 when CommonTree then # copy-constructor style init
606 class CommonErrorNode < CommonTree
659 Constants::INVALID_NODE = CommonTree.new( ANTLR3::INVALID_TOKEN )
794 CommonTree === tree ? tree.token : nil
822 builds and manipulates CommonTree nodes.
844 new_root = create_with_payload( new_root ) unless CommonTree === new_root
876 return CommonTree.new( payload )
974 An implementation of TreeNodeStream tailed for streams based on CommonTree