aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xgbgen/expression.go
diff options
context:
space:
mode:
Diffstat (limited to 'nexgb/xgbgen/expression.go')
-rw-r--r--nexgb/xgbgen/expression.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/nexgb/xgbgen/expression.go b/nexgb/xgbgen/expression.go
index 6a8aa52..2350979 100644
--- a/nexgb/xgbgen/expression.go
+++ b/nexgb/xgbgen/expression.go
@@ -282,7 +282,7 @@ func (e *FieldRef) String() string {
}
func (e *FieldRef) Initialize(p *Protocol) {
- e.Name = SrcName(e.Name)
+ e.Name = SrcName(p, e.Name)
}
type EnumRef struct {
@@ -309,7 +309,7 @@ func (e *EnumRef) String() string {
func (e *EnumRef) Initialize(p *Protocol) {
e.EnumKind = e.EnumKind.(*Translation).RealType(p)
- e.EnumItem = SrcName(e.EnumItem)
+ e.EnumItem = SrcName(p, e.EnumItem)
}
type SumOf struct {
@@ -337,5 +337,5 @@ func (e *SumOf) String() string {
}
func (e *SumOf) Initialize(p *Protocol) {
- e.Name = SrcName(e.Name)
+ e.Name = SrcName(p, e.Name)
}