Changeset 289
- Timestamp:
- 04/27/08 13:01:02 (7 months ago)
- Files:
-
- branches/v2/minid/iolib.d (modified) (1 diff)
- branches/v2/minid/types.d (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/v2/minid/iolib.d
r278 r289 107 107 ), 108 108 109 "File"d, new MDClosure(lib, &ioLib.File, "io.File"),109 "File"d, new MDClosure(lib, &ioLib.File, "io.File"), 110 110 "rename"d, new MDClosure(lib, &rename, "io.rename"), 111 111 "remove"d, new MDClosure(lib, &remove, "io.remove"), branches/v2/minid/types.d
r287 r289 4288 4288 else 4289 4289 { 4290 mStackIndex = funcSlot + numReturns;4290 mStackIndex = mCurrentAR.base + funcSlot + numReturns; 4291 4291 return numReturns; 4292 4292 } … … 4330 4330 else 4331 4331 { 4332 mStackIndex = funcSlot + numReturns;4332 mStackIndex = mCurrentAR.base + funcSlot + numReturns; 4333 4333 return numReturns; 4334 4334 } … … 4373 4373 else 4374 4374 { 4375 mStackIndex = funcSlot + numReturns;4375 mStackIndex = mCurrentAR.base + funcSlot + numReturns; 4376 4376 return numReturns; 4377 4377 } … … 4415 4415 else 4416 4416 { 4417 mStackIndex = funcSlot + numReturns;4417 mStackIndex = mCurrentAR.base + funcSlot + numReturns; 4418 4418 return numReturns; 4419 4419 } … … 4463 4463 else 4464 4464 { 4465 mStackIndex = funcSlot + numReturns;4465 mStackIndex = mCurrentAR.base + funcSlot + numReturns; 4466 4466 return numReturns; 4467 4467 } … … 4509 4509 else 4510 4510 { 4511 mStackIndex = funcSlot + numReturns;4511 mStackIndex = mCurrentAR.base + funcSlot + numReturns; 4512 4512 return numReturns; 4513 4513 }
