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

        public StackElement(int i)
        {
            tempVal = null;
            intVal  = i;
            t       = StackElementType.intType;
        }
Esempio n. 6
0
 public StackElement()
 {
     tempVal = null;
     t = StackElementType.NoneType;
 }
Esempio n. 7
0
 public ParserStackElement(StackElementType type, AstNode node, ParserState state)
 {
     Type  = type;
     Node  = node;
     State = state;
 }
Esempio n. 8
0
 public StackElement(Template temp)
 {
     Debug.Assert(temp != null);
     tempVal = temp;
     t = StackElementType.templateType;
 }
Esempio n. 9
0
 public StackElement(char c)
 {
     tempVal = null;
     charVal = c;
     t = StackElementType.charType;
 }
Esempio 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;
 }