Table constructor initialized fields in the wrong order

Issue #15 resolved
Chimaine created an issue

Issue #14 revealed another serious bug. Table constructor list fields are being reversed. Hash fields are in the correct order.

This caused a constructor like

{ "foo", "bar", "baz" }

resulting in

[1] = "baz"
[2] = "bar"
[3] = "foo"

Comments (3)

  1. Log in to comment