Package antlr.collections.impl
Class LLCell
- java.lang.Object
-
- antlr.collections.impl.LLCell
-
class LLCell extends java.lang.Object
A linked list cell, which contains a ref to the object and next cell. The data,next members are public to this class, but not outside the collections.impl package.- Author:
- Terence Parr MageLang Institute
-
-
Constructor Summary
Constructors Constructor Description LLCell(java.lang.Object o)
-
-
-
Field Detail
-
data
java.lang.Object data
-
next
LLCell next
-
-