NewEmptyMappedAttributeExpr creates an empty mapped attribute expression.
()
| 25 | |
| 26 | // NewEmptyMappedAttributeExpr creates an empty mapped attribute expression. |
| 27 | func NewEmptyMappedAttributeExpr() *MappedAttributeExpr { |
| 28 | return NewMappedAttributeExpr(&AttributeExpr{Type: &Object{}}) |
| 29 | } |
| 30 | |
| 31 | // NewMappedAttributeExpr instantiates a mapped attribute expression for the |
| 32 | // given attribute. The type of att must be Object. |