pulumi/pkg/compiler/symbols.go
joeduffy 1302fc8a47 Add rudimentary template expansion
This change performs template expansion both for root stack documents in
addition to the transitive closure of dependencies.  There are many ongoing
design and implementation questions about how this should actually work;
please see marapongo/mu#7 for a discussion of them.
2016-11-25 12:58:29 -08:00

38 lines
1,016 B
Go

// Copyright 2016 Marapongo, Inc. All rights reserved.
package compiler
import (
"github.com/marapongo/mu/pkg/ast"
"github.com/marapongo/mu/pkg/diag"
)
// Symbol is a named entity that can be referenced and bound to.
type Symbol struct {
Kind SymbolKind // the kind of symbol.
Name ast.Name // the symbol's unique name.
Node *ast.Node // the Node part of the payload data structure.
Real interface{} // the real part of the payload (i.e., the whole structure).
}
// SymbolKind indicates the kind of symbol being registered (e.g., Stack, Service, etc).
type SymbolKind int
const (
SymKindStack SymbolKind = iota
SymKindService
SymKindDocument
)
func NewStackSymbol(nm ast.Name, stack *ast.Stack) *Symbol {
return &Symbol{SymKindStack, nm, &stack.Node, stack}
}
func NewServiceSymbol(nm ast.Name, svc *ast.Service) *Symbol {
return &Symbol{SymKindService, nm, &svc.Node, svc}
}
func NewDocumentSymbol(nm ast.Name, doc *diag.Document) *Symbol {
return &Symbol{SymKindDocument, nm, nil, doc}
}