pulumi/pkg/tokens
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
..
constants.go Use export tables 2017-02-13 09:56:25 -08:00
decors.go Fix up a bunch of golint errors 2017-01-27 15:42:39 -08:00
decors_test.go Add a crazy recursive parsing test...and fix some bugs 2017-01-24 05:25:08 -08:00
names.go Dump eval state afterwards; also rename a few things 2017-01-28 10:51:30 -08:00
names_test.go Run class and module initializers 2017-01-27 14:47:26 -08:00
tokens.go Use strings for property keys 2017-02-11 15:45:37 -08:00
tokens_test.go Implement structured token binding 2017-02-08 14:10:16 -08:00