Expressions: support ${my var} syntax (#29819)

This commit is contained in:
Kyle Brandt
2020-12-14 14:21:16 -05:00
committed by GitHub
parent e7447c5067
commit c6b11a8f90
4 changed files with 38 additions and 7 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ func (t NodeType) String() string {
type VarNode struct {
NodeType
Pos
Name string // Without the $
Name string // Without the $ or {}
Text string // Raw
}