Ejemplo n.º 1
0
 public StackElement()
 {
     tempVal = null;
     t       = StackElementType.NoneType;
 }
Ejemplo n.º 2
0
 public StackElement(char c)
 {
     tempVal = null;
     charVal = c;
     t       = StackElementType.charType;
 }
Ejemplo n.º 3
0
 public StackElement(Template temp)
 {
     Debug.Assert(temp != null);
     tempVal = temp;
     t       = StackElementType.templateType;
 }
Ejemplo n.º 4
0
 public ParserStackElement(StackElementType type, AstNode node,  ParserState state)
 {
     Type = type;
       Node = node;
       State = state;
 }
Ejemplo n.º 5
0
        public int state;          // state of the LR parser

        public StackElement(int i)
        {
            tempVal = null;
            intVal  = i;
            t       = StackElementType.intType;
        }
Ejemplo n.º 6
0
 public StackElement()
 {
     tempVal = null;
     t = StackElementType.NoneType;
 }
Ejemplo n.º 7
0
 public ParserStackElement(StackElementType type, AstNode node, ParserState state)
 {
     Type  = type;
     Node  = node;
     State = state;
 }
Ejemplo n.º 8
0
 public StackElement(Template temp)
 {
     Debug.Assert(temp != null);
     tempVal = temp;
     t = StackElementType.templateType;
 }
Ejemplo n.º 9
0
 public StackElement(char c)
 {
     tempVal = null;
     charVal = c;
     t = StackElementType.charType;
 }
Ejemplo n.º 10
0
 public StackElement(int i)
 {
     tempVal = null;
     intVal = i;
     t = StackElementType.intType;
 }
 public UnaryOperator(StackElementType type) : base(type)
 {
 }
 public StackElement(StackElementType type)
 {
     this.type = type;
 }