Files
Nim/lib/system
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-03-28 02:26:38 +02:00
2015-06-15 00:56:20 +02:00
2015-05-05 20:26:54 +02:00
2016-02-17 14:52:02 +01:00
2016-03-28 02:15:08 +02:00
2016-03-28 02:15:08 +02:00
2015-06-21 21:25:38 +02:00
2016-05-11 22:51:27 +02:00
2016-02-29 11:25:51 +00:00
2016-03-28 02:43:16 +02:00
2015-08-26 00:00:46 -04:00
2014-08-22 23:54:26 +02:00
2015-08-02 02:56:00 +02:00
2016-04-04 12:06:25 +01:00
2016-04-26 15:32:59 +03:00
2016-01-25 19:10:37 +01:00
2016-04-18 11:40:06 +02:00