Example #1
0
	internal CSharpWithInfo(CSharpGenFuncInfo cgInfo, SrcLoc loc)
		{
		this.loc = loc;
		this.index = cgInfo.withCount++;
		} // CSharpWithInfo constructor
Example #2
0
	internal CSharpLoopInfo( CSharpGenFuncInfo cgInfo, SrcLoc loc,
							 StringCollection labels, bool isLoop,
							 bool isSwitch )
		{
		this.loc      = loc;
		this.labels   = labels;
		this.isLoop   = isLoop;
		this.isSwitch = isSwitch;
		this.index    = cgInfo.loopCount++;
		} // CSharpLoopInfo constructor