Inheritance: Expression
 public virtual void Exit(Literal/*!*/ node) { }
 public virtual bool Enter(Literal/*!*/ node) { return true; }
		public object Deserialize(Literal literal)
		{
			return literal.Value;
		}
Beispiel #4
0
 internal protected virtual void Walk(Literal /*!*/ node)
 {
     Enter(node);
     Exit(node);
 }
Beispiel #5
0
 public virtual void Exit(Literal /*!*/ node)
 {
 }
Beispiel #6
0
 public virtual bool Enter(Literal /*!*/ node)
 {
     return(true);
 }