Product config makefiles to Starlark converter
Test: treehugger; internal tests in mk2rbc_test.go Bug: 172923994 Change-Id: I43120b9c181ef2b8d9453e743233811b0fec268b
This commit is contained in:
@@ -18,6 +18,11 @@ package mk2rbc
|
||||
type starlarkType int
|
||||
|
||||
const (
|
||||
// Variable types. Initially we only know the types of the product
|
||||
// configuration variables that are lists, and the types of some
|
||||
// hardwired variables. The remaining variables are first entered as
|
||||
// having an unknown type and treated as strings, but sometimes we
|
||||
// can infer variable's type from the value assigned to it.
|
||||
starlarkTypeUnknown starlarkType = iota
|
||||
starlarkTypeList starlarkType = iota
|
||||
starlarkTypeString starlarkType = iota
|
||||
|
Reference in New Issue
Block a user