Skip to content

Array is not being substituted correctly #127

Closed
@nareshj09

Description

@nareshj09

Parsing this using akkadotnet

    c: {
        q: {
            𝗮: [𝟮, 𝟱]
        }
    }
    c: {
        m: ${c.q} {a: [6]}
    }

Results in:
(c.q.a should has changed)

    {
        c : {
            q : {
                𝗮 : [𝟲]
            },
            m : {
                a : [6]
            }
        }
    }

EXPECTED:
c.q.a should be unchanged

    {
        c : {
            q : {
                𝗮 : [𝟮, 𝟱]
            },
            m : {
                a : [6]
            }
        }
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions