예제 #1
0
 internal void SetNode(AST.ConstantDecl /*!*/ node)
 {
     this.ConstantDesc.LiteralValue = null;
     this.node = node;
 }
예제 #2
0
 internal void SetValue(object value)
 {
     this.ConstantDesc.LiteralValue = value;
     this.node = null;
 }
예제 #3
0
 public KnownConstant(DConstantDesc /*!*/ constantDesc)
     : base(constantDesc)
 {
     Debug.Assert(constantDesc != null);
     this.node = null;
 }
예제 #4
0
		internal void SetNode(AST.ConstantDecl/*!*/ node)
		{
			this.ConstantDesc.LiteralValue = null;
			this.node = node;
		}
예제 #5
0
		internal void SetValue(object value)
		{
			this.ConstantDesc.LiteralValue = value;
			this.node = null;
		}
예제 #6
0
		public KnownConstant(DConstantDesc/*!*/ constantDesc)
			: base(constantDesc)
		{
			Debug.Assert(constantDesc != null);
			this.node = null;
		}