pulumi/pkg/encoding
joeduffy 32960be0fb Use export tables
This change redoes the way module exports are represented.  The old
mechanism -- although laudible for its attempt at consistency -- was
wrong.  For example, consider this case:

    let v = 42;
    export { v };

The old code would silently add *two* members, both with the name "v",
one of which would be dropped since the entries in the map collided.

It would be easy enough just to detect collisions, and update the
above to mark "v" as public, when the export was encountered.  That
doesn't work either, as the following two examples demonstrate:

    let v = 42;
    export { v as w };
    let x = w; // error!

This demonstrates:

    * Exporting "v" with a different name, "w" to consumers of the
      module.  In particular, it should not be possible for module
      consumers to access the member through the name "v".

    * An inability to access the exported name "w" from within the
      module itself.  This is solely for external consumption.

Because of this, we will use an export table approach.  The exports
live alongside the members, and we are smart about when to consult
the export table, versus the member table, during name binding.
2017-02-13 09:56:25 -08:00
..
convert.go Add a renamedProperties section to aws/x/cf 2016-12-05 14:25:23 -08:00
decode.go Fix up a bunch of golint errors 2017-01-27 15:42:39 -08:00
decode_definitions.go Use export tables 2017-02-13 09:56:25 -08:00
decode_expressions.go Begin overhauling semantic phases 2017-01-18 12:18:37 -08:00
decode_statements.go Begin overhauling semantic phases 2017-01-18 12:18:37 -08:00
init.go Begin merging MuPackage/MuIL into the compiler 2017-01-17 17:04:15 -08:00
marshal.go Switch back to the official YAML repo 2016-12-09 11:59:05 -08:00