node list prints combine valuse for node
This commit is contained in:
@@ -157,6 +157,13 @@ func (ent *Entry) Print() string {
|
||||
return "--"
|
||||
}
|
||||
|
||||
func (ent *Entry) PrintComb() string {
|
||||
if ent.value != "" && ent.def != "" {
|
||||
return "[" + ent.value + "," + ent.def + "]"
|
||||
}
|
||||
return ent.PrintComb()
|
||||
}
|
||||
|
||||
func (ent *Entry) PrintB() bool {
|
||||
return ent.GetB()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user