Translate copy-files, add_soong_config_namespace and add_soong_config_var_value macros

Bug: 194521362
Test: internal

Change-Id: I88fb62f057476d96dfb056813a900e8497e7bbb9
This commit is contained in:
Sasha Smundak
2021-07-26 18:42:25 -07:00
parent 596a78949c
commit 3deb968aef
4 changed files with 219 additions and 50 deletions

View File

@@ -31,6 +31,16 @@ const (
starlarkTypeVoid starlarkType = iota
)
type hiddenArgType int
const (
// Some functions have an implicitly emitted first argument, which may be
// a global ('g') or configuration ('cfg') variable.
hiddenArgNone hiddenArgType = iota
hiddenArgGlobal hiddenArgType = iota
hiddenArgConfig hiddenArgType = iota
)
type varClass int
const (