Appends a property to the object. Returns the inserted object property.
(&self, prop_name: &str, value: CstInputValue)
| 1757 | /// |
| 1758 | /// Returns the inserted object property. |
| 1759 | pub fn append(&self, prop_name: &str, value: CstInputValue) -> CstObjectProp { |
| 1760 | self.insert_or_append(None, prop_name, value) |
| 1761 | } |
| 1762 | |
| 1763 | /// Inserts a property at the specified index. |
| 1764 | /// |