pulumi/pkg/errors
joeduffy b57e4c4414 Add Stack subclassing
This change introduces the notion of "Stack subclassing" in two ways:

1. A Stack may declare that it subclasses another one using the base property:

        name: mystack
        base: other/stack
        .. as before ..

2. A Stack may declare that it is abstract; in other words, that it is meant
   solely for subclassing, and cannot be compiled and deployed independently:

        name: mystack
        abstract: true
        .. as before ..

   Note that non-abstract Stacks are required to declare at least one Service,
   whether that is public, private, or both.
2016-11-18 17:30:32 -08:00
..
binder.go Add Stack subclassing 2016-11-18 17:30:32 -08:00
compiler.go Add some targeting tests 2016-11-17 13:08:20 -08:00
parser.go Lay some groundwork for symbol binding 2016-11-16 13:11:58 -08:00
parsetree.go Lay some groundwork for symbol binding 2016-11-16 13:11:58 -08:00