Files
Nim/lib
Hans Raaf d3bae50c3c PHP codegen array constructor hack.
Because of PHP can't have refs for literal function parameters I
needed to come up with a hack such that the following code compiles with
PHP target.

```nim
type Foo = tuple[a: string, b: int]

var foo: array [0..2, Foo]

foo[0] = ("Test", 1)
foo[1] = ("Me", 2)

for x in foo:
  echo x.a
  echo x.b
```
2016-05-11 22:51:27 +02:00
..
2016-05-10 22:03:07 +02:00
2016-04-04 20:47:47 +01:00
2016-04-11 12:07:45 +01:00
2013-03-16 23:53:07 +01:00
2016-04-17 17:10:24 +02:00
2014-08-28 09:59:26 +02:00
2016-01-18 16:11:28 +01:00
2016-04-18 11:40:06 +02:00