Skip to content

Object item is removed by flatten().  #269

@Kray-G

Description

@Kray-G

Here is the problem.

var a = [{a:1},{b:1}];
System.println(a);
System.println(a.flatten());

The result is as follows.

[{"a":1}, {"b":1}]
{}

Expectation is below.

[{"a":1}, {"b":1}]
[{"a":1}, {"b":1}]

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions