Minor in JS backend: made stable order of function parameters for captured variables.

This commit is contained in:
Zalim Bashorov
2014-03-12 22:01:07 +04:00
parent 769f559adf
commit 597fff45e3
@@ -30,7 +30,7 @@ class UsageTracker(
private val scope: JsScope
) {
private val captured = hashMapOf<CallableDescriptor, JsName>()
private val captured = linkedMapOf<CallableDescriptor, JsName>()
// For readonly access from external places.
val capturedDescriptorToJsName: Map<CallableDescriptor, JsName>