Files
Nim/compiler
Reimer Behrends 68b7779bc7 Fixes various issues with shallow copying.
* The {.shallow.} pragma is now properly respected for objects and
  tuples that are not handled by genGenericAsgn(). Mirroring the
  decision in generic assignments, whether an assignment is shallow
  depends on the destination of the assignment, but not the source.
* String literals and complex inline constants are now properly assigned
  a location kind of locData.
* Assignments from a locData source will now force deep copying to
  occur, even if shallowCopy or {.shallow.} is being used. This
  avoids potential crashes from `shallowCopy s, "xxx"` or from
  `shallowCopy t, ("a", "b")`.
2013-12-01 19:15:43 +01:00
..
2013-05-07 17:19:36 +02:00
2013-05-02 00:07:59 +01:00
2013-03-17 23:40:03 +01:00
2013-09-24 09:32:49 +02:00
2013-08-13 11:21:02 +02:00
2013-03-16 23:53:07 +01:00
2012-11-28 01:15:13 +02:00
2012-10-14 12:02:57 +02:00
2013-09-24 09:32:49 +02:00
2012-08-20 08:44:17 +02:00
2013-10-10 00:55:54 +02:00
2013-04-28 23:41:10 +02:00
2013-06-28 16:40:01 +02:00
2013-08-30 22:47:14 +02:00
2013-08-31 11:22:49 +02:00
2013-09-10 00:46:02 +02:00
2013-05-12 21:01:39 +03:00
2013-09-17 23:43:07 +02:00
2013-06-30 21:15:28 +02:00
2013-09-18 02:58:18 +02:00
2013-09-24 09:36:31 +02:00
2013-09-10 23:49:53 +02:00
2013-07-24 23:07:28 +02:00
2013-08-07 00:01:58 +03:00
2013-11-19 15:11:44 +01:00
2013-09-17 23:43:07 +02:00
2013-10-10 00:45:15 +02:00
2013-10-10 00:45:15 +02:00
2013-08-22 19:28:34 +02:00
2013-08-31 19:40:36 +03:00

This directory contains the Nimrod compiler written in Nimrod. Note that this
code has been translated from a bootstrapping version written in Pascal, so
the code is **not** a poster child of good Nimrod code.