Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed broken serialization of duplicated entries in sequences #205

Merged
merged 1 commit into from Sep 9, 2015

Commits on Sep 8, 2015

  1. fixed broken serialization of duplicated entries in sequences

    For example, with the following code
    
    ```
    var obj = { test: 'canary' };
    var array = [ 0, 1 ];
    var arrayWithRefs = [ obj, obj, array, array ];
    ```
    
    `arrayWithRefs` was serialized as
    
    ```
    - &ref_0test: canary
    - *ref0
    - &ref_1- 0
      - 1
    - *ref1
    ```
    
    which is incorrect.
    vogelsgesang committed Sep 8, 2015
    Configuration menu
    Copy the full SHA
    f25843d View commit details
    Browse the repository at this point in the history