pulumi/pkg/tokens
joeduffy cb8af34c93 Eliminate the scope-based symbol table
This change eliminates the scope-based symbol table.  Because we now
require that all module, type, function, and variable elements are
encoded as fully qualified tokens, there is no need for the scope-based
lookups.  Instead, the languages themselves decide how the names bind
to locations and just encode that information directly.

The scope is still required for local variables, however, since those
don't have a well-defined "fixed" notion of name.  This is also how
we will ensure the evaluator stores values correctly -- including
discarding them -- in a lexically scoped manner.
2017-01-25 10:51:04 -08:00
..
constants.go Properly enforce accessibility 2017-01-22 10:09:55 -08:00
decors.go Add a crazy recursive parsing test...and fix some bugs 2017-01-24 05:25:08 -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 Clean up package URL logic 2017-01-20 11:46:36 -08:00
names_test.go Test token manipulation 2017-01-21 11:08:25 -08:00
tokens.go Eliminate the scope-based symbol table 2017-01-25 10:51:04 -08:00
tokens_test.go Implement fmt.Stringer on token types 2017-01-21 12:25:59 -08:00