(parent *AttributeExpr)
| 826 | } |
| 827 | |
| 828 | func (a *AttributeExpr) shouldInherit(parent *AttributeExpr) bool { |
| 829 | return a != nil && AsObject(a.Type) != nil && |
| 830 | parent != nil && AsObject(parent.Type) != nil |
| 831 | } |
| 832 | |
| 833 | // EvalName returns the name used by the DSL evaluation. |
| 834 | func (a *ExampleExpr) EvalName() string { |
no test coverage detected