Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add check to detect duplicated components of a record when parsing a TRLC file. Example: ``` Something duplicated { description = "This is fine!" description = "This is the duplicate." } ``` The behavior of the `Record_Object` class is changed such that the `assign` method only assigns components to the record if it has not been assigned already. This is implemented by checking if the field type is different from `Implicit_Null`. The `Parser` class asks the `Record_Object` if the component is `Implicit_Null`. If no, then an error is sent to the message handler.
- Loading branch information