~zorba-coders/zorba/ItemFactory

« back to all changes in this revision

Viewing changes to src/context/dynamic_context.cpp

  • Committer: Tarmac
  • Author(s): Markos Zaharioudakis
  • Date: 2011-12-14 05:06:47 UTC
  • mfrom: (10582.1.2 tempseq)
  • Revision ID: tarmac-20111214050647-6w8b0gny4gzh9rr6
Optimized and cleaned up SimpleTempSeq implementation and its usage. Approved: Markos Zaharioudakis

Show diffs side-by-side

added added

removed removed

Lines of Context:
313
313
  // the variable itself, and the current value of the variable is overwriten
314
314
  // here by this temp sequence. TODO: use lazy eval if we know the the 
315
315
  // assignment expression does not reference the variable itself.
316
 
  store::TempSeq_t seq = GENV_STORE.createTempSeq(valueIter, 
317
 
                                                  false, // no copy
318
 
                                                  false); // no lazy eval
 
316
  store::TempSeq_t seq = GENV_STORE.createTempSeq(valueIter, false); // no lazy eval
319
317
 
320
318
  valueIter->close();
321
319