- Code: Select all
var v1 = {
a: [{
b: 1,
c: 2
}, {}]
};
But without second item in array it is correct:
- Code: Select all
var v2 = {
a: [{
b: 1,
c: 2
}]
};
This bug distorted formatting in most of our sources, please, fix it ASAP!
var v1 = {
a: [{
b: 1,
c: 2
}, {}]
};
var v2 = {
a: [{
b: 1,
c: 2
}]
};
v1 = [a, //suppose line wrap happened
b,
c]v1 = [{
f1 : 1
},
b,
{
f2 : 2
}]v1 = [{
f1 : 1
},
b,
{
f2 : 2
}]v1 = [{
f1 : 1
},
b,
{
f2 : 2
}] v1 = [{
f: 1
}];
v2 = [{
f: 1
}, {
p: 2
}];
v2 = [{
f: 1
}, {
p: 2
}];
v1 = f({
p: 1
});
v2 = f({
p: 1
}, 2);
v1 = [a, //support a, b is longer enough to cause line wrap
b,
c]Users browsing this forum: No registered users and 0 guests