Browse Source

reformatting some code

pull/37/head
Michael Shanks 7 years ago
parent
commit
f85d080496
  1. 10
      packages/core/src/templateApi/createNodes.js

10
packages/core/src/templateApi/createNodes.js

@ -82,7 +82,15 @@ const addToParent = (obj) => {
if (isIndex(obj))
// Q: why are indexes not children ?
// A: because they cannot have children of their own.
{ parent.indexes.push(obj); } else if (isaggregateGroup(obj)) { parent.aggregateGroups.push(obj); } else { parent.children.push(obj); }
{
parent.indexes.push(obj);
}
else if (isaggregateGroup(obj))
{
parent.aggregateGroups.push(obj);
} else {
parent.children.push(obj);
}
if (isRecord(obj)) {
const defaultIndex = find(

Loading…
Cancel
Save