コード例 #1
0
        void StartConstructed()
        {
            cur_constructed = new ConstructedInfo(cur_constructed);

            if (cur_constructed.Define(this, log))
            {
                // FIXME
                throw new Exception("Error defining implicit target???");
            }
        }
コード例 #2
0
 void FinishConstructed()
 {
     cur_constructed = cur_constructed.parent;
 }
コード例 #3
0
 public ConstructedInfo(ConstructedInfo parent)
 {
     this.parent = parent;
 }
コード例 #4
0
	void FinishConstructed ()
	{
	    cur_constructed = cur_constructed.parent;
	}
コード例 #5
0
	void StartConstructed ()
	{
	    cur_constructed = new ConstructedInfo (cur_constructed);

	    if (cur_constructed.Define (this, log))
		// FIXME
		throw new Exception ("Error defining implicit target???");
	}
コード例 #6
0
	    public ConstructedInfo (ConstructedInfo parent)
	    {
		this.parent = parent;
	    }