Skip to content

Array of object literals #3035

@xixixao

Description

@xixixao

Found a "bug" while having loads of nested structures (for db testing):

array = [
    n: [
        "a"
      ] # here the bracket is indented
    c: "hello"
]

Translates to

array = [
  {
    n: ["a"]
  }, {
    c: "hello"
  }
];

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions