Uses of Class
org.joni.ast.ListNode
-
Packages that use ListNode Package Description org.joni org.joni.ast -
-
Uses of ListNode in org.joni
Fields in org.joni declared as ListNode Modifier and Type Field Description (package private) ListNode
ApplyCaseFoldArg. altRoot
(package private) ListNode
ApplyCaseFoldArg. tail
Methods in org.joni that return ListNode Modifier and Type Method Description private ListNode
Parser. createNodeFromArray(Node[] nodes, int nodeArray)
Methods in org.joni with parameters of type ListNode Modifier and Type Method Description protected void
ArrayCompiler. compileAltNode(ListNode node)
protected abstract void
Compiler. compileAltNode(ListNode node)
private Node
Parser. parseExpRepeatForCar(Node top, ListNode target, boolean group)
-
Uses of ListNode in org.joni.ast
Fields in org.joni.ast declared as ListNode Modifier and Type Field Description ListNode
ListNode. tail
Methods in org.joni.ast that return ListNode Modifier and Type Method Description static ListNode
ListNode. listAdd(ListNode list, Node value)
static ListNode
ListNode. newAlt(Node value, ListNode tail)
static ListNode
ListNode. newList(Node value, ListNode tail)
Methods in org.joni.ast with parameters of type ListNode Modifier and Type Method Description static ListNode
ListNode. listAdd(ListNode list, Node value)
static ListNode
ListNode. newAlt(Node value, ListNode tail)
static ListNode
ListNode. newList(Node value, ListNode tail)
void
ListNode. setTail(ListNode tail)
Constructors in org.joni.ast with parameters of type ListNode Constructor Description ListNode(Node value, ListNode tail, int type)
-