Files
kotlin-fork/compiler/testData/ir/irText/expressions
Dmitry Petrov a687dea898 Introduce special IrDeclarationOrigin's for for-loop variables
FOR_LOOP_ITERATOR
 - temporary variable for for-loop iterator

FOR_LOOP_VARIABLE
 - `x` in `for (x in xs)`

FOR_LOOP_IMPLICIT_VARIABLE
 - temporary variable for for-loop with destructuring, e.g.:
   for ((x, y) in xys)
   =>
   for (tmp in xys) {
     val (x, y) = tmp
   }
2017-07-13 10:59:51 +03:00
..
2016-10-18 09:08:34 +03:00
2016-10-18 09:10:13 +03:00
2016-10-18 09:09:32 +03:00
2017-05-05 09:59:30 +03:00