

Public Member Functions | |
| StackList () | |
| void | Push (object item) |
| Adds an element to the top of the stack list. | |
| object | Pop () |
| Removes the element at the top of the stack list and returns it. | |
| object | Peek () |
| Removes the element at the top of the stack list without removing it. | |
Definition at line 43 of file StackList.cs.
| Antlr.Runtime.Collections.StackList.StackList | ( | ) |
Definition at line 45 of file StackList.cs.
| void Antlr.Runtime.Collections.StackList.Push | ( | object | item | ) |
| object Antlr.Runtime.Collections.StackList.Pop | ( | ) |
Removes the element at the top of the stack list and returns it.
Definition at line 61 of file StackList.cs.
| object Antlr.Runtime.Collections.StackList.Peek | ( | ) |
Removes the element at the top of the stack list without removing it.
Definition at line 72 of file StackList.cs.
1.5.5