diff --git a/scripts/lib/buildExpressionContainer.ts b/scripts/lib/buildExpressionContainer.ts index b48d9e664..e8c472614 100644 --- a/scripts/lib/buildExpressionContainer.ts +++ b/scripts/lib/buildExpressionContainer.ts @@ -5,15 +5,18 @@ import { ExpressionParams, FunctionExpressionParams, ConditionalExpressionParams, - VariableExpressionParams + VariableExpressionParams, + BinaryExpressionParams } from 'src/types/ExpressionParamTypes' import { NonExecutableStepCall, StepChild, StepFunction, StepConditional, + StepBinary, StepVariable } from 'src/types/ExpressionTypes' +import calculateNumLeafNodes from 'scripts/lib/calculateNumLeafNodes' export default function buildExpressionContainer( expressionParams: VariableExpressionParams @@ -27,14 +30,19 @@ export default function buildExpressionContainer( export default function buildExpressionContainer( expressionParams: ConditionalExpressionParams ): ContainerWithState<'needsPrioritize', StepConditional> +export default function buildExpressionContainer( + expressionParams: BinaryExpressionParams +): ContainerWithState<'needsPrioritize', StepBinary> export default function buildExpressionContainer( expressionParams: ExpressionParams ): ContainerWithState<'needsPrioritize', StepChild> export default function buildExpressionContainer( expressionParams: ExpressionParams ): ContainerWithState<'needsPrioritize', StepChild> { + const expression = buildExpressionFromParams(expressionParams) return { - expression: buildExpressionFromParams(expressionParams), + expression, + numLeafNodes: calculateNumLeafNodes(expression), containerState: 'needsPrioritize', previouslyChangedExpressionState: 'default' } diff --git a/scripts/lib/buildExpressionContainers.ts b/scripts/lib/buildExpressionContainers.ts index 487bbf902..0e7e772c7 100644 --- a/scripts/lib/buildExpressionContainers.ts +++ b/scripts/lib/buildExpressionContainers.ts @@ -13,6 +13,7 @@ const buildExpressionContainers = ({ showAllShowSteps, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, skipToTheEnd, hideControls, lastAllowedExpressionState, @@ -116,7 +117,16 @@ const buildExpressionContainers = ({ } } - return results + if (showDefaultAndActiveOnly) { + return results.filter( + x => + x.previouslyChangedExpressionState === 'conditionActive' || + x.previouslyChangedExpressionState === 'default' || + x.previouslyChangedExpressionState === 'active' + ) + } else { + return results + } } else if (initialExpressionContainers) { return initialExpressionContainers } else { diff --git a/scripts/lib/buildExpressionFromParams.ts b/scripts/lib/buildExpressionFromParams.ts index c095e3929..848762ccb 100644 --- a/scripts/lib/buildExpressionFromParams.ts +++ b/scripts/lib/buildExpressionFromParams.ts @@ -7,7 +7,8 @@ import { isConditionalParams, isVariableShorthandFuncParams, isQuestionPlusOrMinusOneParams, - isQuestionShorthandNumberAfterConvertParams + isQuestionShorthandNumberAfterConvertParams, + isRepeatExpressionParams } from 'scripts/lib/expressionParamGuards' import { CallExpressionParams, @@ -20,7 +21,8 @@ import { RepeatExpressionParams, QuestionPlusOrMinusOneParams, QuestionShorthandNumberAfterConvertParams, - VariableShorthandFuncParams + VariableShorthandFuncParams, + BinaryExpressionParams } from 'src/types/ExpressionParamTypes' import { NonExecutableStepCall, @@ -29,6 +31,7 @@ import { StepVariable, StepVariableShorthandNumber, StepConditional, + StepBinary, RepeatExpression } from 'src/types/ExpressionTypes' import { VariableNames } from 'src/types/VariableNames' @@ -89,6 +92,9 @@ export default function buildExpressionFromParams( export default function buildExpressionFromParams( expressionParams: ConditionalExpressionParams ): StepConditional +export default function buildExpressionFromParams( + expressionParams: BinaryExpressionParams +): StepBinary export default function buildExpressionFromParams( expressionParams: RepeatExpressionParams ): RepeatExpression @@ -192,12 +198,21 @@ export default function buildExpressionFromParams( ), shorthandNumberAfterConvert: expressionParams.shorthandNumberAfterConvert } - } else { + } else if (isRepeatExpressionParams(expressionParams)) { return { type: 'repeat', count: expressionParams.count, countVariable: expressionParams.countVariable, child: buildExpressionFromParams(expressionParams.child) } + } else { + return { + type: 'binary', + binaryType: expressionParams.binaryType, + first: buildExpressionFromParams(expressionParams.first), + second: buildExpressionFromParams(expressionParams.second), + state: 'default', + priority: 0 + } } } diff --git a/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts b/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts index 301b70470..d9d13acd6 100644 --- a/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts +++ b/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts @@ -9,7 +9,6 @@ import { isExpressionRunnerSingleStepConfig } from 'scripts/lib/expressionRunnerShorthandConfig' import { ExpressionContainer } from 'src/types/ExpressionContainerTypes' -import { allMaxWidths } from 'src/lib/theme/maxWidths' import { InitializeInstruction, ExpressionRunnerContextProps, @@ -25,16 +24,15 @@ export interface ExpressionRunnerConfig { hideBottomRightBadges: ExpressionRunnerContextProps['hideBottomRightBadges'] hideControls: boolean explanationsVisibility: 'visible' | 'hidden' | 'hiddenInitialPausedOnly' - variableSize: ExpressionRunnerContextProps['variableSize'] initializeInstructions: readonly InitializeInstruction[] lastAllowedExpressionState?: ExpressionContainer['previouslyChangedExpressionState'] lastAllowedExpressionStateAfterIterations?: number - containerSize: keyof typeof allMaxWidths hidePlayButton?: boolean speed: number showAllShowSteps?: boolean skipAlphaConvert?: boolean skipActive?: boolean + showDefaultAndActiveOnly?: boolean skipToTheEnd: boolean hideFuncUnboundBadgeOnExplanation: boolean highlightOverridesCallArgAndFuncUnboundOnly: boolean @@ -51,9 +49,7 @@ const expressionRunnerDefaults = { hideBottomRightBadges: expressionRunnerContextDefault.hideBottomRightBadges, hideControls: false, explanationsVisibility: 'visible', - variableSize: expressionRunnerContextDefault.variableSize, initializeInstructions: [], - containerSize: 'xxs', skipToTheEnd: false, hidePlayButton: false, speed: 1, @@ -119,13 +115,12 @@ const buildExpressionRunnerConfigFromShorthand = ( isDone, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, nextIterations, showPriorities, showAllShowSteps, explanationsVisibility, bottomRightBadgeOverrides, - variableSize, - containerSize, highlightOverrides, highlightOverrideActiveAfterStart, highlightOverridesCallArgAndFuncUnboundOnly, @@ -142,11 +137,10 @@ const buildExpressionRunnerConfigFromShorthand = ( hidePriorities: !showPriorities, explanationsVisibility, showAllShowSteps, - variableSize, highlightOverridesCallArgAndFuncUnboundOnly, - containerSize, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, bottomRightBadgeOverrides, highlightOverrides, highlightFunctions, @@ -172,8 +166,7 @@ const buildExpressionRunnerConfigFromShorthand = ( speed, skipAlphaConvert, skipActive, - variableSize, - containerSize, + showDefaultAndActiveOnly, highlightOverrides, explanationsVisibility } = mergeWithDefault< @@ -189,10 +182,9 @@ const buildExpressionRunnerConfigFromShorthand = ( showAllShowSteps, hideFuncUnboundBadgeOnExplanation, skipToTheEnd, - variableSize, - containerSize, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, explanationsVisibility: explanationsVisibility || 'hiddenInitialPausedOnly', lastAllowedExpressionState, @@ -211,18 +203,15 @@ const buildExpressionRunnerConfigFromShorthand = ( showPriorities, explanationsVisibility, showAllShowSteps, - variableSize, - containerSize, nextIterations, - skipActive + skipActive, + showDefaultAndActiveOnly } = mergeWithDefault< typeof config, typeof expressionRunnerSingleStepConfigDefault >(config, expressionRunnerSingleStepConfigDefault) runnerProps = { - variableSize, - containerSize, initialExpressionContainer, hidePriorities: !showPriorities, hideFuncUnboundBadgeOnExplanation, @@ -232,6 +221,7 @@ const buildExpressionRunnerConfigFromShorthand = ( lastAllowedExpressionStateAfterIterations: nextIterations, showAllShowSteps, skipActive, + showDefaultAndActiveOnly, initializeInstructions: buildInitializeInstructions({ nextIterations, initialState @@ -244,8 +234,6 @@ const buildExpressionRunnerConfigFromShorthand = ( showPriorities, explanationsVisibility, showAllShowSteps, - variableSize, - containerSize, nextIterations, skipToTheEnd, convert @@ -256,8 +244,6 @@ const buildExpressionRunnerConfigFromShorthand = ( runnerProps = { initialExpressionContainers, - variableSize, - containerSize, hidePriorities: !showPriorities, hideFuncUnboundBadgeOnExplanation, hidePlayButton: false, diff --git a/scripts/lib/calculateNumLeafNodes.ts b/scripts/lib/calculateNumLeafNodes.ts new file mode 100644 index 000000000..430c43a69 --- /dev/null +++ b/scripts/lib/calculateNumLeafNodes.ts @@ -0,0 +1,38 @@ +import { + isCall, + isVariable, + isFunction, + isConditional, + isBinary +} from 'src/lib/expressionTypeGuards' +import { Expression } from 'src/types/ExpressionTypes' + +export default function calculateNumLeafNodes(expression: Expression): number { + if (isVariable(expression)) { + if (expression.shorthandNumberAfterConvert !== undefined) { + return 2 + } else { + return 1 + } + } else if (isCall(expression)) { + return ( + calculateNumLeafNodes(expression.arg) + + calculateNumLeafNodes(expression.func) + ) + } else if (isFunction(expression)) { + return calculateNumLeafNodes(expression.body) + } else if (isConditional(expression)) { + return ( + calculateNumLeafNodes(expression.condition) + + calculateNumLeafNodes(expression.trueCase) + + calculateNumLeafNodes(expression.falseCase) + ) + } else if (isBinary(expression)) { + return ( + calculateNumLeafNodes(expression.first) + + calculateNumLeafNodes(expression.second) + ) + } else { + return calculateNumLeafNodes(expression.child) + } +} diff --git a/scripts/lib/expressionParamGuards.ts b/scripts/lib/expressionParamGuards.ts index 181773c1e..e88af07d7 100644 --- a/scripts/lib/expressionParamGuards.ts +++ b/scripts/lib/expressionParamGuards.ts @@ -8,7 +8,8 @@ import { ConditionalExpressionParams, VariableShorthandFuncParams, QuestionPlusOrMinusOneParams, - QuestionShorthandNumberAfterConvertParams + QuestionShorthandNumberAfterConvertParams, + RepeatExpressionParams } from 'src/types/ExpressionParamTypes' export function isHighlightedVariableExpressionParams( @@ -85,3 +86,9 @@ export function isQuestionShorthandNumberAfterConvertParams( return !!(expressionParams as QuestionShorthandNumberAfterConvertParams) .shorthandNumberAfterConvert } + +export function isRepeatExpressionParams( + expressionParams: ExpressionParams +): expressionParams is RepeatExpressionParams { + return !!(expressionParams as RepeatExpressionParams).child +} diff --git a/scripts/lib/expressionRunnerShorthandConfig.ts b/scripts/lib/expressionRunnerShorthandConfig.ts index a6cd9d4e3..c48897e4e 100644 --- a/scripts/lib/expressionRunnerShorthandConfig.ts +++ b/scripts/lib/expressionRunnerShorthandConfig.ts @@ -7,7 +7,6 @@ export const expressionRunnerSimpleConfigDefault = { initialState: 'default', showPriorities: false, explanationsVisibility: 'hidden', - variableSize: 'lg', skipAlphaConvert: false } @@ -18,13 +17,12 @@ interface ExpressionRunnerSimpleConfig { isDone?: boolean skipAlphaConvert?: boolean skipActive?: boolean + showDefaultAndActiveOnly?: boolean nextIterations?: number showPriorities?: boolean showAllShowSteps?: ExpressionRunnerProps['showAllShowSteps'] explanationsVisibility?: ExpressionRunnerProps['explanationsVisibility'] bottomRightBadgeOverrides?: ExpressionRunnerProps['bottomRightBadgeOverrides'] - variableSize?: ExpressionRunnerProps['variableSize'] - containerSize?: ExpressionRunnerProps['containerSize'] highlightOverrides?: ExpressionRunnerProps['highlightOverrides'] highlightOverrideActiveAfterStart?: ExpressionRunnerProps['highlightOverrideActiveAfterStart'] highlightOverridesCallArgAndFuncUnboundOnly?: ExpressionRunnerProps['highlightOverridesCallArgAndFuncUnboundOnly'] @@ -45,7 +43,6 @@ export const expressionRunnerPlayButtonOnlyConfigDefault = { showPriorities: false, speed: 1, skipAlphaConvert: false, - variableSize: 'lg', explanationsVisibility: 'hiddenInitialPausedOnly' } @@ -69,8 +66,7 @@ interface ExpressionRunnerPlayButtonOnlyConfig { speed?: number skipAlphaConvert?: boolean skipActive?: boolean - variableSize?: ExpressionRunnerProps['variableSize'] - containerSize?: ExpressionRunnerProps['containerSize'] + showDefaultAndActiveOnly?: boolean highlightOverrides?: ExpressionRunnerProps['highlightOverrides'] explanationsVisibility?: ExpressionRunnerProps['explanationsVisibility'] } @@ -78,8 +74,7 @@ interface ExpressionRunnerPlayButtonOnlyConfig { export const expressionRunnerSingleStepConfigDefault = { hideFuncUnboundBadgeOnExplanation: false, showPriorities: false, - explanationsVisibility: 'hiddenInitialPausedOnly', - variableSize: 'lg' + explanationsVisibility: 'hiddenInitialPausedOnly' } export function isExpressionRunnerSingleStepConfig( @@ -96,9 +91,8 @@ interface ExpressionRunnerSingleStepConfig { hideFuncUnboundBadgeOnExplanation?: boolean showPriorities?: boolean skipActive?: boolean + showDefaultAndActiveOnly?: boolean nextIterations?: number - variableSize?: ExpressionRunnerProps['variableSize'] - containerSize?: ExpressionRunnerProps['containerSize'] explanationsVisibility?: ExpressionRunnerProps['explanationsVisibility'] showAllShowSteps?: ExpressionRunnerProps['showAllShowSteps'] } @@ -113,7 +107,6 @@ export const expressionRunnerPredefinedConfigDefault = { hideFuncUnboundBadgeOnExplanation: false, showPriorities: false, explanationsVisibility: 'hiddenInitialPausedOnly', - variableSize: 'lg', skipToTheEnd: true } @@ -123,8 +116,6 @@ interface ExpressionRunnerPredefinedConfig { hideFuncUnboundBadgeOnExplanation?: boolean showPriorities?: boolean nextIterations?: number - variableSize?: ExpressionRunnerProps['variableSize'] - containerSize?: ExpressionRunnerProps['containerSize'] explanationsVisibility?: ExpressionRunnerProps['explanationsVisibility'] showAllShowSteps?: ExpressionRunnerProps['showAllShowSteps'] skipToTheEnd?: boolean diff --git a/scripts/lib/findNextCallExpressionAndParent.ts b/scripts/lib/findNextExecutableAndParent.ts similarity index 55% rename from scripts/lib/findNextCallExpressionAndParent.ts rename to scripts/lib/findNextExecutableAndParent.ts index 360b8aa5d..ee5359d62 100644 --- a/scripts/lib/findNextCallExpressionAndParent.ts +++ b/scripts/lib/findNextExecutableAndParent.ts @@ -3,7 +3,9 @@ import { isExecutableCall, isFunction, isConditional, - isExecutableConditional + isExecutableConditional, + isBinary, + isExecutableBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, @@ -11,15 +13,22 @@ import { Expression, FunctionExpression, ExecutableConditional, - ConditionalExpression + ConditionalExpression, + BinaryExpression, + ExecutableBinary } from 'src/types/ExpressionTypes' export interface FindResult { - readonly expression?: ExecutableCall | ExecutableConditional + readonly expression?: + | ExecutableCall + | ExecutableConditional + | ExecutableBinary readonly callParent?: CallExpression readonly funcParent?: FunctionExpression readonly conditionalParent?: ConditionalExpression + readonly binaryParent?: BinaryExpression readonly callParentKey?: 'func' | 'arg' + readonly binaryParentKey?: 'first' | 'second' } /** @@ -31,12 +40,16 @@ function helper({ expression, conditionalParent, callParent, - callParentKey + callParentKey, + binaryParent, + binaryParentKey }: { - expression: CallExpression | ConditionalExpression + expression: CallExpression | ConditionalExpression | BinaryExpression conditionalParent?: ConditionalExpression + binaryParent?: BinaryExpression callParent?: CallExpression callParentKey?: 'func' | 'arg' + binaryParentKey?: 'first' | 'second' }): FindResult { if (isCall(expression)) { if (isExecutableCall(expression)) { @@ -44,7 +57,9 @@ function helper({ expression, callParent, callParentKey, - conditionalParent + binaryParentKey, + conditionalParent, + binaryParent } } @@ -69,17 +84,23 @@ function helper({ return result } } - } else { + } else if (isConditional(expression)) { if (isExecutableConditional(expression)) { return { expression, callParent, callParentKey, - conditionalParent + binaryParentKey, + conditionalParent, + binaryParent } } - if (isCall(expression.condition) || isConditional(expression.condition)) { + if ( + isCall(expression.condition) || + isConditional(expression.condition) || + isBinary(expression.condition) + ) { const result: FindResult = helper({ expression: expression.condition, conditionalParent: expression @@ -88,17 +109,58 @@ function helper({ return result } } + } else { + if (isExecutableBinary(expression)) { + return { + expression, + callParent, + callParentKey, + binaryParentKey, + conditionalParent, + binaryParent + } + } + + if ( + isCall(expression.first) || + isConditional(expression.first) || + isBinary(expression.first) + ) { + const result: FindResult = helper({ + expression: expression.first, + binaryParent: expression, + binaryParentKey: 'first' + }) + if (result.expression) { + return result + } + } + + if ( + isCall(expression.second) || + isConditional(expression.second) || + isBinary(expression.second) + ) { + const result: FindResult = helper({ + expression: expression.second, + binaryParent: expression, + binaryParentKey: 'second' + }) + if (result.expression) { + return result + } + } } const notFound: FindResult = {} return notFound } -export default function findNextCallExpressionAndParent( +export default function findNextExecutableAndParent( expression: Expression ): FindResult { const notFound: FindResult = {} - if (isCall(expression) || isConditional(expression)) { + if (isCall(expression) || isConditional(expression) || isBinary(expression)) { return helper({ expression }) } else if (isFunction(expression)) { let currentExpression: Expression = expression @@ -107,11 +169,19 @@ export default function findNextCallExpressionAndParent( previousExpression = currentExpression currentExpression = currentExpression.body } - if (isCall(currentExpression) || isConditional(currentExpression)) { + if ( + isCall(currentExpression) || + isConditional(currentExpression) || + isBinary(currentExpression) + ) { const helperResult = helper({ expression: currentExpression }) - if (helperResult.callParent || helperResult.conditionalParent) { + if ( + helperResult.callParent || + helperResult.conditionalParent || + helperResult.binaryParent + ) { return helperResult } else if (previousExpression) { return { diff --git a/scripts/lib/getConflictsToUnused.ts b/scripts/lib/getConflictsToUnused.ts index 922afd7f3..91f1c0fdd 100644 --- a/scripts/lib/getConflictsToUnused.ts +++ b/scripts/lib/getConflictsToUnused.ts @@ -3,7 +3,8 @@ import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { Expression } from 'src/types/ExpressionTypes' import { VariableNames } from 'src/types/VariableNames' @@ -35,6 +36,10 @@ function getAllVariableNamesWithDuplicates( return getAllVariableNames(expression.condition, { filter }) .concat(getAllVariableNames(expression.trueCase, { filter })) .concat(getAllVariableNames(expression.falseCase, { filter })) + } else if (isBinary(expression)) { + return getAllVariableNames(expression.first, { filter }).concat( + getAllVariableNames(expression.second, { filter }) + ) } else { throw new Error() } diff --git a/scripts/lib/hasUnboundVariables.ts b/scripts/lib/hasUnboundVariables.ts index e3d097dd4..00df2430d 100644 --- a/scripts/lib/hasUnboundVariables.ts +++ b/scripts/lib/hasUnboundVariables.ts @@ -2,7 +2,8 @@ import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { Expression } from 'src/types/ExpressionTypes' @@ -25,6 +26,11 @@ export default function hasUnboundVariables(expression: Expression): boolean { hasUnboundVariables(expression.trueCase) || hasUnboundVariables(expression.falseCase) ) + } else if (isBinary(expression)) { + return ( + hasUnboundVariables(expression.first) || + hasUnboundVariables(expression.second) + ) } else { throw new Error() } diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index f8c809b28..bd964f4c2 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2143,50 +2143,6 @@ export const rovo = initializeExpressionContainer([ } ]) -export const kjff = initializeExpressionContainer([ - yCombinator, - { - arg: 'a', - body: { - arg: 'f', - body: { - checkType: 'isZero', - condition: 'f', - trueCase: { shorthandNumber: 1 }, - falseCase: ['mult', 'f', ['a', [{ shorthandFunc: 'pred' }, 'f']]] - } - } - }, - { - shorthandNumber: 4, - initialHighlight: true - } -]) - -export const zxdz = initializeExpressionContainer([ - yCombinatorHighlighted, - { - arg: 'a', - body: { - arg: 'f', - body: { - checkType: 'isZero', - condition: 'f', - trueCase: { shorthandNumber: 1 }, - falseCase: [ - { name: 'mult', highlighted: true }, - 'f', - ['a', [{ shorthandFunc: 'pred' }, 'f']] - ] - } - } - }, - { - shorthandNumber: 3, - initialHighlight: true - } -]) - export const glvb = initializeExpressionContainer([ { arg: 'A', @@ -2249,17 +2205,6 @@ export const nndd = initializeDoneExpressionContainer({ shorthandFunc: 'add' }) -export const uiwq = initializeExpressionContainer({ - checkType: 'isZero', - condition: 'f', - trueCase: { shorthandNumber: 1, initialHighlight: true }, - falseCase: [ - { name: 'mult', highlighted: true }, - { name: 'f', highlighted: true }, - ['a', [{ shorthandFunc: 'pred' }, 'f']] - ] -}) - export const roso = initializeExpressionContainer({ checkType: 'isZero', condition: 'f', @@ -2270,14 +2215,158 @@ export const roso = initializeExpressionContainer({ ] }) -export const xfso = initializeExpressionContainer([ - [ - { name: 'mult', highlighted: true }, - { - shorthandNumberAfterConvert: 'binarySecond' +export const ygum = initializeExpressionContainer({ + binaryType: 'multiply', + first: 'blankNumberPurple', + second: 'blankNumberPink' +}) + +export const babw = initializeExpressionContainer({ + binaryType: 'multiply', + first: { + shorthandNumber: 2 + }, + second: { + shorthandNumber: 3 + } +}) + +export const krin = initializeExpressionContainer({ + binaryType: 'multiply', + first: { + binaryType: 'multiply', + first: { + shorthandNumber: 2 + }, + second: { + shorthandNumber: 3 } - ], + }, + second: { + shorthandNumber: 4 + } +}) + +export const hbzd = initializeExpressionContainer({ + checkType: 'isZero', + condition: [{ shorthandFunc: 'pred' }, 'f'], + trueCase: { shorthandNumber: 1 }, + falseCase: { + binaryType: 'multiply', + first: ['a', [{ shorthandFunc: 'pred' }, 'f']], + second: 'f' + } +}) + +export const bgid = initializeExpressionContainer([ + yCombinatorHighlighted, { - shorthandNumberAfterConvert: 'binaryFirst' + arg: highlighted('a'), + body: { + arg: highlighted('f'), + body: { + checkType: 'isZero', + condition: [{ shorthandFunc: 'pred' }, 'f'], + trueCase: { shorthandNumber: 1 }, + falseCase: { + binaryType: 'multiply', + first: ['a', [{ shorthandFunc: 'pred' }, 'f']], + second: 'f' + } + } + } } ]) + +export const jypn = initializeExpressionContainer([ + yCombinator, + { + arg: 'a', + body: { + arg: 'f', + body: { + checkType: 'isZero', + condition: [{ shorthandFunc: 'pred' }, 'f'], + trueCase: { shorthandNumber: 1 }, + falseCase: { + binaryType: 'multiply', + first: ['a', [{ shorthandFunc: 'pred' }, 'f']], + second: 'f' + } + } + } + }, + { + shorthandNumber: 3, + initialHighlight: true + } +]) + +export const jvmi = initializeExpressionContainer([ + yCombinator, + { + arg: 'a', + body: { + arg: 'f', + body: { + checkType: 'isZero', + condition: [{ shorthandFunc: 'pred' }, 'f'], + trueCase: { shorthandNumber: 1 }, + falseCase: { + binaryType: 'multiply', + first: ['a', [{ shorthandFunc: 'pred' }, 'f']], + second: 'f' + } + } + } + }, + { + shorthandNumber: 4, + initialHighlight: true + } +]) + +export const bzpj = initializeExpressionContainer([ + yCombinator, + { + arg: 'a', + body: { + arg: 'f', + body: { + checkType: 'isZero', + condition: [{ shorthandFunc: 'pred' }, 'f'], + trueCase: { shorthandNumber: 1 }, + falseCase: { + binaryType: 'multiply', + first: ['a', [{ shorthandFunc: 'pred' }, 'f']], + second: 'f' + } + } + } + }, + { + shorthandNumber: 5, + initialHighlight: true + } +]) + +export const abhd = initializeExpressionContainer([ + yCombinator, + { + arg: 'a', + body: { + arg: 'f', + body: { + checkType: 'isZero', + condition: [{ shorthandFunc: 'pred' }, 'f'], + trueCase: { shorthandNumber: 1 }, + falseCase: { + binaryType: 'multiply', + first: ['a', [{ shorthandFunc: 'pred' }, 'f']], + second: 'f' + } + } + } + }, + { name: 'blankNumber', highlighted: true } +]) diff --git a/scripts/lib/initializeExpressionContainer.ts b/scripts/lib/initializeExpressionContainer.ts index 90de7752f..d0ddd6e58 100644 --- a/scripts/lib/initializeExpressionContainer.ts +++ b/scripts/lib/initializeExpressionContainer.ts @@ -7,14 +7,16 @@ import { FunctionExpressionParams, VariableExpressionParams, VariableShorthandNumberParams, - ConditionalExpressionParams + ConditionalExpressionParams, + BinaryExpressionParams } from 'src/types/ExpressionParamTypes' import { CallExpression, Expression, FunctionExpression, VariableExpression, - ConditionalExpression + ConditionalExpression, + BinaryExpression } from 'src/types/ExpressionTypes' export default function initializeExpressionContainer( @@ -29,6 +31,9 @@ export default function initializeExpressionContainer( export default function initializeExpressionContainer( expressionParams: ConditionalExpressionParams ): ContainerWithState<'ready', ConditionalExpression> +export default function initializeExpressionContainer( + expressionParams: BinaryExpressionParams +): ContainerWithState<'ready', BinaryExpression> export default function initializeExpressionContainer( expressionParams: VariableShorthandNumberParams ): ContainerWithState<'ready', VariableExpression> diff --git a/scripts/lib/maxNestedFunctionDepth.ts b/scripts/lib/maxNestedFunctionDepth.ts index b083b34c1..0364c9d42 100644 --- a/scripts/lib/maxNestedFunctionDepth.ts +++ b/scripts/lib/maxNestedFunctionDepth.ts @@ -2,7 +2,8 @@ import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { Expression } from 'src/types/ExpressionTypes' @@ -22,6 +23,11 @@ export default function maxNestedFunctionDepth(expression: Expression): number { maxNestedFunctionDepth(expression.trueCase), maxNestedFunctionDepth(expression.falseCase) ) + } else if (isBinary(expression)) { + return Math.max( + maxNestedFunctionDepth(expression.first), + maxNestedFunctionDepth(expression.second) + ) } else { return 0 } diff --git a/scripts/lib/populateMaxNestedFunctionDepths.ts b/scripts/lib/populateMaxNestedFunctionDepths.ts new file mode 100644 index 000000000..2f93747d9 --- /dev/null +++ b/scripts/lib/populateMaxNestedFunctionDepths.ts @@ -0,0 +1,51 @@ +import { + isCall, + isVariable, + isFunction, + isConditional, + isBinary +} from 'src/lib/expressionTypeGuards' +import { Expression } from 'src/types/ExpressionTypes' +import maxNestedFunctionDepth from 'scripts/lib/maxNestedFunctionDepth' + +export default function populateMaxNestedFunctionDepths( + expression: E +): E { + if (isVariable(expression)) { + return { + ...expression, + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) + } + } else if (isCall(expression)) { + return { + ...expression, + arg: populateMaxNestedFunctionDepths(expression.arg), + func: populateMaxNestedFunctionDepths(expression.func), + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) + } + } else if (isFunction(expression)) { + return { + ...expression, + arg: populateMaxNestedFunctionDepths(expression.arg), + body: populateMaxNestedFunctionDepths(expression.body), + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) + } + } else if (isConditional(expression)) { + return { + ...expression, + condition: populateMaxNestedFunctionDepths(expression.condition), + trueCase: populateMaxNestedFunctionDepths(expression.trueCase), + falseCase: populateMaxNestedFunctionDepths(expression.falseCase), + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) + } + } else if (isBinary(expression)) { + return { + ...expression, + first: populateMaxNestedFunctionDepths(expression.first), + second: populateMaxNestedFunctionDepths(expression.second), + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) + } + } else { + return expression + } +} diff --git a/scripts/lib/prioritizeExpression.ts b/scripts/lib/prioritizeExpression.ts index 6ecf1e3d5..59eb2c860 100644 --- a/scripts/lib/prioritizeExpression.ts +++ b/scripts/lib/prioritizeExpression.ts @@ -3,13 +3,16 @@ import { isFunction, isVariable, isConditional, - isRepeat + isRepeat, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, Expression, - ConditionalExpression + ConditionalExpression, + BinaryExpression } from 'src/types/ExpressionTypes' +import populateMaxNestedFunctionDepths from 'scripts/lib/populateMaxNestedFunctionDepths' function prioritizeCallExpressionHelper({ expression, @@ -26,18 +29,27 @@ function prioritizeCallExpressionHelper({ let currentPriority = priority let maxDescendantPriority = priority - if (isCall(expression.func) || isConditional(expression.func)) { + if ( + isCall(expression.func) || + isConditional(expression.func) || + isBinary(expression.func) + ) { let funcResult if (isCall(expression.func)) { funcResult = prioritizeCallExpressionHelper({ expression: expression.func, priority }) - } else { + } else if (isConditional(expression.func)) { funcResult = prioritizeConditionalExpressionHelper({ expression: expression.func, priority }) + } else { + funcResult = prioritizeBinaryExpressionHelper({ + expression: expression.func, + priority + }) } newFunc = funcResult.expression @@ -47,18 +59,27 @@ function prioritizeCallExpressionHelper({ newFunc = prioritizeExpressionHelper(expression.func) } - if (isCall(expression.arg) || isConditional(expression.arg)) { + if ( + isCall(expression.arg) || + isConditional(expression.arg) || + isBinary(expression.arg) + ) { let argResult if (isCall(expression.arg)) { argResult = prioritizeCallExpressionHelper({ expression: expression.arg, priority: currentPriority + 1 }) - } else { + } else if (isConditional(expression.arg)) { argResult = prioritizeConditionalExpressionHelper({ expression: expression.arg, priority: currentPriority + 1 }) + } else { + argResult = prioritizeBinaryExpressionHelper({ + expression: expression.arg, + priority: currentPriority + 1 + }) } newArg = argResult.expression @@ -78,6 +99,91 @@ function prioritizeCallExpressionHelper({ } } +function prioritizeBinaryExpressionHelper({ + expression, + priority +}: { + expression: E + priority: number +}): { + expression: E + maxDescendantPriority: number +} { + let newSecond: Expression + let newFirst: Expression + let currentPriority = priority + let maxDescendantPriority = priority + + if ( + isCall(expression.first) || + isConditional(expression.first) || + isBinary(expression.first) + ) { + let funcResult + if (isCall(expression.first)) { + funcResult = prioritizeCallExpressionHelper({ + expression: expression.first, + priority + }) + } else if (isConditional(expression.first)) { + funcResult = prioritizeConditionalExpressionHelper({ + expression: expression.first, + priority + }) + } else { + funcResult = prioritizeBinaryExpressionHelper({ + expression: expression.first, + priority + }) + } + + newFirst = funcResult.expression + currentPriority = funcResult.maxDescendantPriority + 1 + maxDescendantPriority = currentPriority + } else { + newFirst = prioritizeExpressionHelper(expression.first) + } + + if ( + isCall(expression.second) || + isConditional(expression.second) || + isBinary(expression.second) + ) { + let argResult + if (isCall(expression.second)) { + argResult = prioritizeCallExpressionHelper({ + expression: expression.second, + priority: currentPriority + 1 + }) + } else if (isConditional(expression.second)) { + argResult = prioritizeConditionalExpressionHelper({ + expression: expression.second, + priority: currentPriority + 1 + }) + } else { + argResult = prioritizeBinaryExpressionHelper({ + expression: expression.second, + priority: currentPriority + 1 + }) + } + + newSecond = argResult.expression + maxDescendantPriority = argResult.maxDescendantPriority + } else { + newSecond = prioritizeExpressionHelper(expression.second) + } + + return { + expression: { + ...expression, + first: newFirst, + second: newSecond, + priority: currentPriority + }, + maxDescendantPriority + } +} + function prioritizeConditionalExpressionHelper< E extends ConditionalExpression >({ @@ -96,18 +202,27 @@ function prioritizeConditionalExpressionHelper< let currentPriority = priority let maxDescendantPriority = priority - if (isCall(expression.condition) || isConditional(expression.condition)) { + if ( + isCall(expression.condition) || + isConditional(expression.condition) || + isBinary(expression.condition) + ) { let conditionResult if (isCall(expression.condition)) { conditionResult = prioritizeCallExpressionHelper({ expression: expression.condition, priority }) - } else { + } else if (isConditional(expression.condition)) { conditionResult = prioritizeConditionalExpressionHelper({ expression: expression.condition, priority }) + } else { + conditionResult = prioritizeBinaryExpressionHelper({ + expression: expression.condition, + priority + }) } newCondition = conditionResult.expression currentPriority = conditionResult.maxDescendantPriority + 1 @@ -116,18 +231,27 @@ function prioritizeConditionalExpressionHelper< newCondition = prioritizeExpressionHelper(expression.condition) } - if (isCall(expression.trueCase) || isConditional(expression.trueCase)) { + if ( + isCall(expression.trueCase) || + isConditional(expression.trueCase) || + isBinary(expression.trueCase) + ) { let trueCaseResult if (isCall(expression.trueCase)) { trueCaseResult = prioritizeCallExpressionHelper({ expression: expression.trueCase, priority: currentPriority + 1 }) - } else { + } else if (isConditional(expression.trueCase)) { trueCaseResult = prioritizeConditionalExpressionHelper({ expression: expression.trueCase, priority: currentPriority + 1 }) + } else { + trueCaseResult = prioritizeBinaryExpressionHelper({ + expression: expression.trueCase, + priority: currentPriority + 1 + }) } newTrueCase = trueCaseResult.expression maxDescendantPriority = trueCaseResult.maxDescendantPriority @@ -135,18 +259,27 @@ function prioritizeConditionalExpressionHelper< newTrueCase = prioritizeExpressionHelper(expression.trueCase) } - if (isCall(expression.falseCase) || isConditional(expression.falseCase)) { + if ( + isCall(expression.falseCase) || + isConditional(expression.falseCase) || + isBinary(expression.falseCase) + ) { let falseCaseResult if (isCall(expression.falseCase)) { falseCaseResult = prioritizeCallExpressionHelper({ expression: expression.falseCase, priority: currentPriority + 1 }) - } else { + } else if (isConditional(expression.falseCase)) { falseCaseResult = prioritizeConditionalExpressionHelper({ expression: expression.falseCase, priority: currentPriority + 1 }) + } else { + falseCaseResult = prioritizeBinaryExpressionHelper({ + expression: expression.falseCase, + priority: currentPriority + 1 + }) } newFalseCase = falseCaseResult.expression maxDescendantPriority = falseCaseResult.maxDescendantPriority @@ -196,6 +329,11 @@ function prioritizeExpressionHelper( ...expression, child: prioritizeExpressionHelper(expression.child) } + } else if (isBinary(expression)) { + return prioritizeBinaryExpressionHelper({ + priority: 1, + expression + }).expression } else { throw new Error() } @@ -268,6 +406,20 @@ function populatePriorityAggs({ funcPriorityAgg }) } + } else if (isBinary(expression)) { + return { + ...expression, + first: populatePriorityAggs({ + expression: expression.first, + argPriorityAgg: [...argPriorityAgg, expression.priority], + funcPriorityAgg: [] as number[] + }), + second: populatePriorityAggs({ + expression: expression.second, + argPriorityAgg: [] as number[], + funcPriorityAgg: [expression.priority, ...funcPriorityAgg] + }) + } } else { throw new Error() } @@ -277,7 +429,9 @@ export default function prioritizeExpression( expression: E ): E { return populatePriorityAggs({ - expression: prioritizeExpressionHelper(expression), + expression: populateMaxNestedFunctionDepths( + prioritizeExpressionHelper(expression) + ), argPriorityAgg: [] as number[], funcPriorityAgg: [] as number[] }) diff --git a/scripts/lib/prioritizeExpressionContainer.ts b/scripts/lib/prioritizeExpressionContainer.ts index fee264a63..83ab02cee 100644 --- a/scripts/lib/prioritizeExpressionContainer.ts +++ b/scripts/lib/prioritizeExpressionContainer.ts @@ -6,6 +6,7 @@ export default function prioritizeExpressionContainer( expressionContainer: ContainerWithState<'needsPrioritize', E> ): ContainerWithState<'ready', E> { return { + ...expressionContainer, containerState: 'ready', previouslyChangedExpressionState: expressionContainer.previouslyChangedExpressionState, diff --git a/scripts/lib/replaceBinaryParentKey.ts b/scripts/lib/replaceBinaryParentKey.ts new file mode 100644 index 000000000..3ecefb2f3 --- /dev/null +++ b/scripts/lib/replaceBinaryParentKey.ts @@ -0,0 +1,126 @@ +import { + isCall, + isVariable, + isFunction, + isConditional, + isBinary +} from 'src/lib/expressionTypeGuards' +import { + CallExpression, + Expression, + ConditionalExpression, + FunctionExpression, + VariableExpression, + BinaryExpression +} from 'src/types/ExpressionTypes' + +export default function replaceBinaryParentKey( + expression: VariableExpression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): VariableExpression +export default function replaceBinaryParentKey( + expression: FunctionExpression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): FunctionExpression +export default function replaceBinaryParentKey( + expression: CallExpression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): CallExpression +export default function replaceBinaryParentKey( + expression: ConditionalExpression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): ConditionalExpression +export default function replaceBinaryParentKey( + expression: BinaryExpression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): BinaryExpression +export default function replaceBinaryParentKey( + expression: VariableExpression | FunctionExpression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): VariableExpression | FunctionExpression +export default function replaceBinaryParentKey( + expression: Expression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): Expression +export default function replaceBinaryParentKey( + expression: Expression, + key: 'first' | 'second', + target: BinaryExpression, + replaceWith: Expression +): Expression { + if (isVariable(expression)) { + return expression + } else if (isCall(expression)) { + return { + ...expression, + arg: replaceBinaryParentKey(expression.arg, key, target, replaceWith), + func: replaceBinaryParentKey(expression.func, key, target, replaceWith) + } + } else if (isFunction(expression)) { + return { + ...expression, + body: replaceBinaryParentKey(expression.body, key, target, replaceWith) + } + } else if (isConditional(expression)) { + return { + ...expression, + condition: replaceBinaryParentKey( + expression.condition, + key, + target, + replaceWith + ), + trueCase: replaceBinaryParentKey( + expression.trueCase, + key, + target, + replaceWith + ), + falseCase: replaceBinaryParentKey( + expression.falseCase, + key, + target, + replaceWith + ) + } + } else if (isBinary(expression)) { + if (expression === target) { + return { + ...expression, + [key]: replaceWith + } + } else { + return { + ...expression, + first: replaceBinaryParentKey( + expression.first, + key, + target, + replaceWith + ), + second: replaceBinaryParentKey( + expression.second, + key, + target, + replaceWith + ) + } + } + } else { + throw new Error() + } +} diff --git a/scripts/lib/replaceCallParentKey.ts b/scripts/lib/replaceCallParentKey.ts index 3191792b7..8dd079e07 100644 --- a/scripts/lib/replaceCallParentKey.ts +++ b/scripts/lib/replaceCallParentKey.ts @@ -2,14 +2,16 @@ import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, Expression, FunctionExpression, VariableExpression, - ConditionalExpression + ConditionalExpression, + BinaryExpression } from 'src/types/ExpressionTypes' export default function replaceCallParentKey( @@ -36,6 +38,12 @@ export default function replaceCallParentKey( key: 'func' | 'arg', replaceWith: Expression ): ConditionalExpression +export default function replaceCallParentKey( + expression: BinaryExpression, + target: CallExpression, + key: 'func' | 'arg', + replaceWith: Expression +): BinaryExpression export default function replaceCallParentKey( expression: VariableExpression | FunctionExpression, target: CallExpression, @@ -96,6 +104,12 @@ export default function replaceCallParentKey( replaceWith ) } + } else if (isBinary(expression)) { + return { + ...expression, + first: replaceCallParentKey(expression.first, target, key, replaceWith), + second: replaceCallParentKey(expression.second, target, key, replaceWith) + } } else { throw new Error() } diff --git a/scripts/lib/replaceConditionalParentKey.ts b/scripts/lib/replaceConditionalParentKey.ts index f8e2d87cb..2d923827c 100644 --- a/scripts/lib/replaceConditionalParentKey.ts +++ b/scripts/lib/replaceConditionalParentKey.ts @@ -2,14 +2,16 @@ import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, Expression, ConditionalExpression, FunctionExpression, - VariableExpression + VariableExpression, + BinaryExpression } from 'src/types/ExpressionTypes' export default function replaceConditionalParentKey( @@ -32,6 +34,11 @@ export default function replaceConditionalParentKey( target: ConditionalExpression, replaceWith: Expression ): ConditionalExpression +export default function replaceConditionalParentKey( + expression: BinaryExpression, + target: ConditionalExpression, + replaceWith: Expression +): BinaryExpression export default function replaceConditionalParentKey( expression: VariableExpression | FunctionExpression, target: ConditionalExpression, @@ -86,6 +93,16 @@ export default function replaceConditionalParentKey( ) } } + } else if (isBinary(expression)) { + return { + ...expression, + first: replaceConditionalParentKey(expression.first, target, replaceWith), + second: replaceConditionalParentKey( + expression.second, + target, + replaceWith + ) + } } else { throw new Error() } diff --git a/scripts/lib/replaceFuncParentKey.ts b/scripts/lib/replaceFuncParentKey.ts index 235d01834..31e28e8a0 100644 --- a/scripts/lib/replaceFuncParentKey.ts +++ b/scripts/lib/replaceFuncParentKey.ts @@ -2,14 +2,16 @@ import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, Expression, ConditionalExpression, FunctionExpression, - VariableExpression + VariableExpression, + BinaryExpression } from 'src/types/ExpressionTypes' export default function replaceFuncParentKey( @@ -32,6 +34,11 @@ export default function replaceFuncParentKey( target: FunctionExpression, replaceWith: Expression ): ConditionalExpression +export default function replaceFuncParentKey( + expression: BinaryExpression, + target: FunctionExpression, + replaceWith: Expression +): BinaryExpression export default function replaceFuncParentKey( expression: VariableExpression | FunctionExpression, target: FunctionExpression, @@ -78,6 +85,12 @@ export default function replaceFuncParentKey( trueCase: replaceFuncParentKey(expression.trueCase, target, replaceWith), falseCase: replaceFuncParentKey(expression.falseCase, target, replaceWith) } + } else if (isBinary(expression)) { + return { + ...expression, + first: replaceFuncParentKey(expression.first, target, replaceWith), + second: replaceFuncParentKey(expression.second, target, replaceWith) + } } else { throw new Error() } diff --git a/scripts/lib/resetExpression.ts b/scripts/lib/resetExpression.ts index 7c6a19a7e..a607657d5 100644 --- a/scripts/lib/resetExpression.ts +++ b/scripts/lib/resetExpression.ts @@ -2,7 +2,8 @@ import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, @@ -14,7 +15,9 @@ import { StepVariable, ConditionalExpression, VariableExpression, - StepConditional + StepConditional, + StepBinary, + BinaryExpression } from 'src/types/ExpressionTypes' export default function resetExpression( @@ -26,6 +29,9 @@ export default function resetExpression( export default function resetExpression( expression: ConditionalExpression ): StepConditional<'default'> +export default function resetExpression( + expression: BinaryExpression +): StepBinary<'default'> export default function resetExpression( expression: CallExpression ): NonExecutableStepCall<'default'> @@ -71,6 +77,14 @@ export default function resetExpression( trueCase: resetExpression(expression.trueCase), falseCase: resetExpression(expression.falseCase) } + } else if (isBinary(expression)) { + return { + ...expression, + state: 'default', + priority: 0, + first: resetExpression(expression.first), + second: resetExpression(expression.second) + } } else { throw new Error() } diff --git a/scripts/lib/resetExpressionContainer.ts b/scripts/lib/resetExpressionContainer.ts index 3e25009f4..0ef06e6bf 100644 --- a/scripts/lib/resetExpressionContainer.ts +++ b/scripts/lib/resetExpressionContainer.ts @@ -6,6 +6,7 @@ export default function resetExpressionContainer( expressionContainer: ContainerWithState<'needsReset'> ): ContainerWithState<'needsPrioritize', StepChild<'default'>> { return { + ...expressionContainer, containerState: 'needsPrioritize', expression: resetExpression(expressionContainer.expression), previouslyChangedExpressionState: 'default' diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 9b28f614d..c1c3da29b 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -946,32 +946,27 @@ export const yjur: ExpressionRunnerShorthandConfig = { export const amoq: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', - initialExpressionContainer: initialExpressionContainers.rnth, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.rnth } export const dfjp: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.bwig, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.bwig } export const lxrk: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', - initialExpressionContainer: initialExpressionContainers.bwig, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.bwig } export const sucz: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.bmar, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.bmar } export const xlgb: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.dacg, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.dacg } export const pgxb: ExpressionRunnerShorthandConfig = { @@ -992,13 +987,11 @@ export const ednv: ExpressionRunnerShorthandConfig = { export const xpks: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'md', initialExpressionContainer: initialExpressionContainers.dams } export const dgpx: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'md', initialExpressionContainer: initialExpressionContainers.yvfc } @@ -1100,8 +1093,7 @@ export const jguj: ExpressionRunnerShorthandConfig = { export const fljg: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.szos, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const ezmz: ExpressionRunnerShorthandConfig = { @@ -1111,7 +1103,6 @@ export const ezmz: ExpressionRunnerShorthandConfig = { initialExpressionContainers.hdpc ], showPriorities: true, - variableSize: 'md', convert: 'toMathBoxPlay' } @@ -1124,9 +1115,7 @@ export const biit: ExpressionRunnerShorthandConfig = { export const pbop: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.vemg, - showPriorities: true, - containerSize: 'xs', - variableSize: 'md' + showPriorities: true } export const fxde: ExpressionRunnerShorthandConfig = { @@ -1165,8 +1154,7 @@ export const spga: ExpressionRunnerShorthandConfig = { export const akug: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.pxae, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const vfdw: ExpressionRunnerShorthandConfig = { @@ -1176,22 +1164,19 @@ export const vfdw: ExpressionRunnerShorthandConfig = { initialExpressionContainers.qjcv ], showPriorities: true, - variableSize: 'md', convert: 'toMathBoxPlay' } export const jiua: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.glmd, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const aone: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.kgoi, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const qsoa: ExpressionRunnerShorthandConfig = { @@ -1203,8 +1188,7 @@ export const qsoa: ExpressionRunnerShorthandConfig = { export const qrgc: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.cyhx, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const jxvy: ExpressionRunnerShorthandConfig = { @@ -1229,50 +1213,43 @@ export const olyw: ExpressionRunnerShorthandConfig = { export const tjaf: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.bjzr, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const avcu: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.wgtz, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const dewi: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.jrur, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const xxan: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.utur, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const omwd: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.drbs, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const nuco: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.kwqc, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const dhiu: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.kwqc, skipToTheEnd: false, - variableSize: 'md', showPriorities: true, initialState: 'active', lastAllowedExpressionState: 'default' @@ -1282,7 +1259,6 @@ export const akjy: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.kwqc, skipToTheEnd: false, - variableSize: 'md', showPriorities: true, initialState: 'active', lastAllowedExpressionState: 'default', @@ -1293,7 +1269,6 @@ export const hnyn: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.kwqc, skipToTheEnd: false, - variableSize: 'md', showPriorities: true, initialState: 'active', nextIterations: 2 @@ -1337,15 +1312,13 @@ export const qrfw: ExpressionRunnerShorthandConfig = { export const plde: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.uqth, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const rjzw: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.uqth, showPriorities: true, - variableSize: 'md', skipToTheEnd: false } @@ -1353,7 +1326,6 @@ export const jsvg: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.uqth, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, initialState: 'active', lastAllowedExpressionState: 'default' @@ -1363,7 +1335,6 @@ export const uexo: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.uqth, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, initialState: 'active', lastAllowedExpressionState: 'default', @@ -1374,7 +1345,6 @@ export const hdhy: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.uqth, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, initialState: 'active', lastAllowedExpressionState: 'default', @@ -1398,15 +1368,13 @@ export const rico: ExpressionRunnerShorthandConfig = { export const awwn: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.ngth, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const nlbn: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.ngth, showPriorities: true, - variableSize: 'md', skipToTheEnd: false } @@ -1468,7 +1436,6 @@ export const oqpi: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.mtyb, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, skipActive: true, speed: 1.25 @@ -1478,7 +1445,6 @@ export const zxkq: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.wwii, showPriorities: true, - variableSize: 'md', bottomRightBadgeOverrides: { j: '🅱️', i: '🅰️' } } @@ -1489,7 +1455,6 @@ export const dyoq: ExpressionRunnerShorthandConfig = { initialExpressionContainers.hdpc ], showPriorities: true, - variableSize: 'md', convert: 'toMathBoxPlay' } @@ -1500,29 +1465,25 @@ export const xhdq: ExpressionRunnerShorthandConfig = { initialExpressionContainers.uarl ], showPriorities: true, - variableSize: 'sm', convert: 'toMathBoxPlay' } export const nhqo: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.orfr, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const ybne: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.qdoh, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const akik: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.qdoh, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, skipAlphaConvert: true, skipActive: true, @@ -1547,7 +1508,6 @@ export const exbn: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.henz, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, skipActive: true, speed: 1.25 @@ -1557,7 +1517,6 @@ export const qlcq: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.qdoh, showPriorities: true, - variableSize: 'md', initialState: 'showFuncUnbound', explanationsVisibility: 'visible' } @@ -1567,7 +1526,6 @@ export const kwyy: ExpressionRunnerShorthandConfig = { initialExpressionContainer: initialExpressionContainers.qdoh, showPriorities: true, initialState: 'showFuncUnbound', - variableSize: 'md', highlightOverrides: { b: 'highlighted' }, highlightOverridesCallArgAndFuncUnboundOnly: true, highlightOverrideActiveAfterStart: true @@ -1575,7 +1533,6 @@ export const kwyy: ExpressionRunnerShorthandConfig = { export const oukl: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, initialState: 'showFuncUnbound', @@ -1585,7 +1542,6 @@ export const oukl: ExpressionRunnerShorthandConfig = { export const rypq: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, initialState: 'showFuncUnbound', @@ -1595,7 +1551,6 @@ export const rypq: ExpressionRunnerShorthandConfig = { export const etae: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, initialState: 'betaReducePreviewBefore', @@ -1604,7 +1559,6 @@ export const etae: ExpressionRunnerShorthandConfig = { export const wqml: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, initialState: 'betaReducePreviewBefore', @@ -1614,7 +1568,6 @@ export const wqml: ExpressionRunnerShorthandConfig = { export const jwdn: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, initialState: 'betaReducePreviewAfter', @@ -1623,7 +1576,6 @@ export const jwdn: ExpressionRunnerShorthandConfig = { export const abnp: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, initialState: 'betaReducePreviewAfter', @@ -1632,7 +1584,6 @@ export const abnp: ExpressionRunnerShorthandConfig = { export const yabb: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, initialState: 'betaReducePreviewCrossed', @@ -1641,7 +1592,6 @@ export const yabb: ExpressionRunnerShorthandConfig = { export const osff: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, initialState: 'betaReducePreviewCrossed', @@ -1650,7 +1600,6 @@ export const osff: ExpressionRunnerShorthandConfig = { export const hbbv: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, nextIterations: 1, @@ -1659,7 +1608,6 @@ export const hbbv: ExpressionRunnerShorthandConfig = { export const fxok: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, nextIterations: 1, @@ -1668,7 +1616,6 @@ export const fxok: ExpressionRunnerShorthandConfig = { export const lxhc: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, nextIterations: 1, @@ -1678,7 +1625,6 @@ export const lxhc: ExpressionRunnerShorthandConfig = { export const hvqy: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, nextIterations: 1, @@ -1688,7 +1634,6 @@ export const hvqy: ExpressionRunnerShorthandConfig = { export const nntn: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, nextIterations: 1, @@ -1698,7 +1643,6 @@ export const nntn: ExpressionRunnerShorthandConfig = { export const veft: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, nextIterations: 1, @@ -1708,7 +1652,6 @@ export const veft: ExpressionRunnerShorthandConfig = { export const bdme: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, nextIterations: 1, @@ -1718,7 +1661,6 @@ export const bdme: ExpressionRunnerShorthandConfig = { export const yxel: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.ycof, showPriorities: true, skipAlphaConvert: true, @@ -1727,7 +1669,6 @@ export const yxel: ExpressionRunnerShorthandConfig = { export const ivol: ExpressionRunnerShorthandConfig = { runner: 'simple', - variableSize: 'sm', initialExpressionContainer: initialExpressionContainers.kipz, showPriorities: true, skipAlphaConvert: true, @@ -1739,7 +1680,6 @@ export const smdm: ExpressionRunnerShorthandConfig = { initialExpressionContainer: initialExpressionContainers.qdoh, showPriorities: true, initialState: 'needsAlphaConvert', - variableSize: 'md', explanationsVisibility: 'visible' } @@ -1748,7 +1688,6 @@ export const niwv: ExpressionRunnerShorthandConfig = { initialExpressionContainer: initialExpressionContainers.qdoh, showPriorities: true, initialState: 'alphaConvertDone', - variableSize: 'md', explanationsVisibility: 'visible' } @@ -1757,7 +1696,6 @@ export const fsgq: ExpressionRunnerShorthandConfig = { initialExpressionContainer: initialExpressionContainers.qdoh, showPriorities: true, initialState: 'alphaConvertDone', - variableSize: 'md', skipToTheEnd: false, skipActive: true, speed: 1.25 @@ -1766,9 +1704,7 @@ export const fsgq: ExpressionRunnerShorthandConfig = { export const skoo: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.guql, - showPriorities: true, - containerSize: 'xs', - variableSize: 'md' + showPriorities: true } export const gvxz: ExpressionRunnerShorthandConfig = { @@ -1780,17 +1716,13 @@ export const gvxz: ExpressionRunnerShorthandConfig = { export const xqjd: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.xwlj, - showPriorities: true, - containerSize: 'xs', - variableSize: 'md' + showPriorities: true } export const cldb: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.smxz, - showPriorities: true, - containerSize: 'xs', - variableSize: 'md' + showPriorities: true } export const dqdv: ExpressionRunnerShorthandConfig = { @@ -1803,18 +1735,14 @@ export const dqdv: ExpressionRunnerShorthandConfig = { export const ylav: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.udaf, - showPriorities: true, - containerSize: 'xs', - variableSize: 'md' + showPriorities: true } export const zwut: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.udaf, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, - containerSize: 'xs', lastAllowedExpressionState: 'needsAlphaConvert', skipActive: true, speed: 1.25 @@ -1824,8 +1752,6 @@ export const xusi: ExpressionRunnerShorthandConfig = { runner: 'singleStep', initialExpressionContainer: initialExpressionContainers.udaf, showPriorities: true, - variableSize: 'md', - containerSize: 'xs', initialState: 'needsAlphaConvert', finalState: 'alphaConvertDone', explanationsVisibility: 'visible' @@ -1835,9 +1761,7 @@ export const lipt: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.udaf, showPriorities: true, - variableSize: 'md', skipToTheEnd: false, - containerSize: 'xs', initialState: 'alphaConvertDone', skipActive: true, speed: 1.25 @@ -1860,18 +1784,14 @@ export const mzys: ExpressionRunnerShorthandConfig = { export const zwvj: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.lwpw, - showPriorities: true, - containerSize: 'xs', - variableSize: 'sm' + showPriorities: true } export const ifiq: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.lwpw, showPriorities: true, - variableSize: 'sm', skipToTheEnd: false, - containerSize: 'xs', skipActive: true, speed: 1.75 } @@ -1886,17 +1806,13 @@ export const joaq: ExpressionRunnerShorthandConfig = { export const rdae: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.wosn, - showPriorities: true, - containerSize: 'xs', - variableSize: 'md' + showPriorities: true } export const cbmn: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.vfwt, - showPriorities: true, - containerSize: 'xs', - variableSize: 'md' + showPriorities: true } export const fhkl: ExpressionRunnerShorthandConfig = { @@ -1906,24 +1822,19 @@ export const fhkl: ExpressionRunnerShorthandConfig = { initialExpressionContainers.hdpc ], showPriorities: true, - variableSize: 'sm', - containerSize: 'xs', convert: 'toMathBoxPlay' } export const eweo: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.yvkr, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const bgko: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.whey, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const jehv: ExpressionRunnerShorthandConfig = { @@ -1931,8 +1842,7 @@ export const jehv: ExpressionRunnerShorthandConfig = { initialExpressionContainers: [ initialExpressionContainers.ptsa, initialExpressionContainers.qefa - ], - variableSize: 'md' + ] } export const rhoa: ExpressionRunnerShorthandConfig = { @@ -1943,17 +1853,13 @@ export const rhoa: ExpressionRunnerShorthandConfig = { export const sdta: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.cmay, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const hhjq: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.rpcm, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const dqwh: ExpressionRunnerShorthandConfig = { @@ -1988,8 +1894,6 @@ export const nmrp: ExpressionRunnerShorthandConfig = { skipToTheEnd: false, initialExpressionContainer: initialExpressionContainers.psdd, showPriorities: true, - variableSize: 'md', - containerSize: 'xs', skipActive: true, speed: 1.25 } @@ -1997,17 +1901,13 @@ export const nmrp: ExpressionRunnerShorthandConfig = { export const ycpk: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.zcia, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const bndi: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.qrvj, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const ooya: ExpressionRunnerShorthandConfig = { @@ -2022,8 +1922,6 @@ export const gpat: ExpressionRunnerShorthandConfig = { skipToTheEnd: false, initialExpressionContainer: initialExpressionContainers.nnqw, showPriorities: true, - variableSize: 'md', - containerSize: 'xs', skipActive: true, speed: 1.25 } @@ -2031,17 +1929,13 @@ export const gpat: ExpressionRunnerShorthandConfig = { export const psyv: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.vwpl, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const kiiq: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.xgur, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const zdpf: ExpressionRunnerShorthandConfig = { @@ -2052,9 +1946,7 @@ export const zdpf: ExpressionRunnerShorthandConfig = { export const jbqw: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.eryp, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const svbd: ExpressionRunnerShorthandConfig = { @@ -2062,8 +1954,6 @@ export const svbd: ExpressionRunnerShorthandConfig = { skipToTheEnd: false, initialExpressionContainer: initialExpressionContainers.zmua, showPriorities: true, - variableSize: 'sm', - containerSize: 'xs', skipActive: true, speed: 1.5 } @@ -2078,25 +1968,19 @@ export const oclg: ExpressionRunnerShorthandConfig = { export const fton: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.lcce, - showPriorities: true, - variableSize: 'md', - containerSize: 'xs' + showPriorities: true } export const bnyo: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.gbbo, - showPriorities: true, - variableSize: 'xxs', - containerSize: 'xs' + showPriorities: true } export const dpaw: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.gbbo, showPriorities: true, - variableSize: 'xxs', - containerSize: 'xs', highlightOverrides: { l: 'highlighted', m: 'highlighted', @@ -2122,17 +2006,13 @@ export const vhte: ExpressionRunnerShorthandConfig = { export const wgby: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.aqul, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const poha: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.snye, showPriorities: true, - variableSize: 'xs', - containerSize: 'xs', highlightOverrides: { i: 'highlighted', j: 'highlighted', @@ -2143,24 +2023,19 @@ export const poha: ExpressionRunnerShorthandConfig = { export const vcqp: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.aqvq, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const cpdy: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.abrk, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const lxgj: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.xskc, showPriorities: true, - variableSize: 'sm', - containerSize: 'xs', highlightOverrides: { a: 'highlighted', b: 'highlighted', @@ -2173,44 +2048,36 @@ export const lxgj: ExpressionRunnerShorthandConfig = { export const wenx: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.gxhl, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const vlhb: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.cmay, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const ruou: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.anme, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.anme } export const awbq: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.exoq, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const crvj: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.oyzh, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const ghwe: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.aiyb, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const gmzn: ExpressionRunnerShorthandConfig = { @@ -2219,7 +2086,6 @@ export const gmzn: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.aiyb, showPriorities: true, - variableSize: 'md', lastAllowedExpressionState: 'default' } @@ -2229,7 +2095,6 @@ export const uiwl: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.aiyb, showPriorities: true, - variableSize: 'md', nextIterations: 1 } @@ -2239,17 +2104,14 @@ export const ynoy: ExpressionRunnerShorthandConfig = { speed: 4, skipActive: true, initialExpressionContainer: initialExpressionContainers.gbbo, - showPriorities: true, - variableSize: 'xxs', - containerSize: 'xs' + showPriorities: true } export const gmgs: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.teba, showPriorities: true, - bottomRightBadgeOverrides: { j: '🅰️', k: '🅱️' }, - variableSize: 'md' + bottomRightBadgeOverrides: { j: '🅰️', k: '🅱️' } } export const ykqf: ExpressionRunnerShorthandConfig = { @@ -2268,51 +2130,40 @@ export const cefx: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.xlrf, showPriorities: true, - variableSize: 'xs', - containerSize: 'xs', highlightOverrides: { a: 'highlighted', b: 'highlighted' } } export const kjba: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.jrfk, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const htir: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.jrfk, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const peiy: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.aqni, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const voeb: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.guxy, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.guxy } export const deay: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.uqte, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.uqte } export const mbje: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.uxvq, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.uxvq } export const ovua: ExpressionRunnerShorthandConfig = { @@ -2321,8 +2172,6 @@ export const ovua: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', lastAllowedExpressionState: 'default', lastAllowedExpressionStateAfterIterations: 3, speed: 1.75 @@ -2333,8 +2182,6 @@ export const bras: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 4, highlightFunctions: true } @@ -2344,7 +2191,6 @@ export const yyfi: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.reak, showPriorities: true, - variableSize: 'sm', highlightOverrides: { bentoBox: 'highlighted' } } @@ -2352,8 +2198,7 @@ export const amjx: ExpressionRunnerShorthandConfig = { runner: 'simple', skipActive: true, initialExpressionContainer: initialExpressionContainers.edye, - showPriorities: true, - variableSize: 'sm' + showPriorities: true } export const avsl: ExpressionRunnerShorthandConfig = { @@ -2361,7 +2206,6 @@ export const avsl: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.reak, showPriorities: true, - variableSize: 'sm', initialState: 'conditionActive', explanationsVisibility: 'visible' } @@ -2371,7 +2215,6 @@ export const fkqu: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.reak, showPriorities: true, - variableSize: 'sm', initialState: 'falseCaseActive', explanationsVisibility: 'visible' } @@ -2381,7 +2224,6 @@ export const wjwu: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.reak, showPriorities: true, - variableSize: 'sm', nextIterations: 1 } @@ -2390,7 +2232,6 @@ export const ngxc: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.reak, showPriorities: true, - variableSize: 'sm', initialState: 'default', nextIterations: 1, highlightOverrides: { bentoBox: 'highlighted' }, @@ -2402,8 +2243,6 @@ export const fkvy: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 5, highlightFunctions: true } @@ -2414,8 +2253,6 @@ export const dwmc: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 5, lastAllowedExpressionState: 'default', lastAllowedExpressionStateAfterIterations: 3, @@ -2427,8 +2264,6 @@ export const tfsi: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 9, highlightFunctions: true } @@ -2438,7 +2273,6 @@ export const fkat: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.nrff, showPriorities: true, - variableSize: 'sm', highlightOverrides: { bentoBox: 'highlighted' }, explanationsVisibility: 'hidden' } @@ -2448,7 +2282,6 @@ export const qgau: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.twpb, showPriorities: true, - variableSize: 'sm', explanationsVisibility: 'hidden' } @@ -2458,8 +2291,6 @@ export const uwyn: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 9, lastAllowedExpressionState: 'default', lastAllowedExpressionStateAfterIterations: 5, @@ -2471,8 +2302,6 @@ export const jjet: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 15, highlightFunctions: true } @@ -2482,7 +2311,6 @@ export const cyyp: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.tsjd, showPriorities: true, - variableSize: 'sm', explanationsVisibility: 'hidden', highlightOverrides: { bentoBox: 'highlighted' } } @@ -2492,7 +2320,6 @@ export const kosw: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.qojl, showPriorities: true, - variableSize: 'sm', explanationsVisibility: 'hidden' } @@ -2501,7 +2328,6 @@ export const ysxf: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.zxhp, showPriorities: true, - variableSize: 'sm', explanationsVisibility: 'hidden' } @@ -2511,8 +2337,6 @@ export const snlf: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 15, lastAllowedExpressionState: 'default', lastAllowedExpressionStateAfterIterations: 6, @@ -2524,8 +2348,6 @@ export const gngw: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.jrfk, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', nextIterations: 22, highlightFunctions: true } @@ -2535,7 +2357,6 @@ export const toem: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.ihdu, showPriorities: true, - variableSize: 'xs', explanationsVisibility: 'hidden', highlightOverrides: { bentoBox: 'highlighted' } } @@ -2545,7 +2366,6 @@ export const kdgv: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.npmi, showPriorities: true, - variableSize: 'xs', explanationsVisibility: 'hidden' } @@ -2554,7 +2374,6 @@ export const mibj: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.znga, showPriorities: true, - variableSize: 'xs', explanationsVisibility: 'hidden' } @@ -2563,7 +2382,6 @@ export const afoh: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.ihdu, showPriorities: true, - variableSize: 'xs', initialState: 'conditionActive', explanationsVisibility: 'visible' } @@ -2573,7 +2391,6 @@ export const msrk: ExpressionRunnerShorthandConfig = { skipActive: true, initialExpressionContainer: initialExpressionContainers.ihdu, showPriorities: true, - variableSize: 'xs', initialState: 'trueCaseActive' } @@ -2581,16 +2398,14 @@ export const jwce: ExpressionRunnerShorthandConfig = { runner: 'simple', skipActive: true, initialExpressionContainer: initialExpressionContainers.ohhf, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const sskt: ExpressionRunnerShorthandConfig = { runner: 'simple', skipActive: true, initialExpressionContainer: initialExpressionContainers.rzkp, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const qycx: ExpressionRunnerShorthandConfig = { @@ -2606,65 +2421,49 @@ export const owpg: ExpressionRunnerShorthandConfig = { export const hafp: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.pqsi, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const bxuv: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.brri, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const xhul: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.dmgj, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const anzh: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.jtfj, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const zkon: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.ykbi, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const xjzx: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.vazr, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const rjho: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.psxr, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const hvfb: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.silw, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const dmrz: ExpressionRunnerShorthandConfig = { @@ -2678,8 +2477,6 @@ export const tpyg: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.yknu, showPriorities: true, - variableSize: 'xs', - containerSize: 'xs', highlightOverrides: { e: 'highlighted', f: 'highlighted', @@ -2694,16 +2491,13 @@ export const ugvz: ExpressionRunnerShorthandConfig = { skipActive: true, speed: 1.75, initialExpressionContainer: initialExpressionContainers.yknu, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const xkcm: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.ajfq, showPriorities: true, - variableSize: 'md', bottomRightBadgeOverrides: { d: '🅱️', c: '🅰️' } } @@ -2711,30 +2505,24 @@ export const edzu: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.hnzs, showPriorities: true, - variableSize: 'sm', bottomRightBadgeOverrides: { d: '🅱️', c: '🅰️' } } export const mlnt: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.ibfr, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const ryqp: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.bgiy, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.bgiy } export const vqyl: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.yuov, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const wzqv: ExpressionRunnerShorthandConfig = { @@ -2743,57 +2531,47 @@ export const wzqv: ExpressionRunnerShorthandConfig = { skipActive: true, speed: 1.75, initialExpressionContainer: initialExpressionContainers.ndtm, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const nvdn: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.rovo, - showPriorities: true, - variableSize: 'sm', - containerSize: 'xs' + showPriorities: true } export const uhqo: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.tjcx, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.tjcx } -export const rwuw: ExpressionRunnerShorthandConfig = { +export const kzkg: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.kjff, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + initialExpressionContainer: initialExpressionContainers.glvb, + showPriorities: true } -export const qaoa: ExpressionRunnerShorthandConfig = { +export const trwj: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.zxdz, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + initialExpressionContainer: initialExpressionContainers.ygum, + showPriorities: true } -export const kzkg: ExpressionRunnerShorthandConfig = { - runner: 'simple', - initialExpressionContainer: initialExpressionContainers.glvb, +export const potg: ExpressionRunnerShorthandConfig = { + runner: 'playButtonOnly', + initialExpressionContainer: initialExpressionContainers.babw, showPriorities: true } -export const jtxf: ExpressionRunnerShorthandConfig = { +export const aklf: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.xfso, - showPriorities: true, - variableSize: 'md' + initialExpressionContainer: initialExpressionContainers.nuoh, + showPriorities: true } -export const aklf: ExpressionRunnerShorthandConfig = { +export const olqy: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.nuoh, + initialExpressionContainer: initialExpressionContainers.bgid, showPriorities: true } @@ -2812,16 +2590,74 @@ export const unxf: ExpressionRunnerShorthandConfig = { showPriorities: true } -export const ddrg: ExpressionRunnerShorthandConfig = { +export const zick: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.uiwq, + initialExpressionContainer: initialExpressionContainers.hbzd, + showPriorities: true +} + +export const zlfx: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.jypn, + showPriorities: true +} + +export const rrmc: ExpressionRunnerShorthandConfig = { + runner: 'playButtonOnly', + skipToTheEnd: false, + initialExpressionContainer: initialExpressionContainers.jypn, showPriorities: true, - variableSize: 'sm' + speed: 4, + showDefaultAndActiveOnly: true, + lastAllowedExpressionState: 'default', + lastAllowedExpressionStateAfterIterations: 19 } -export const spki: ExpressionRunnerShorthandConfig = { +export const qurt: ExpressionRunnerShorthandConfig = { runner: 'simple', - initialExpressionContainer: initialExpressionContainers.roso, + initialExpressionContainer: initialExpressionContainers.jypn, showPriorities: true, - variableSize: 'sm' + nextIterations: 20 +} + +export const gzuj: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.jypn, + showPriorities: true, + isDone: true +} + +export const ancc: ExpressionRunnerShorthandConfig = { + runner: 'playButtonOnly', + skipToTheEnd: false, + initialExpressionContainer: initialExpressionContainers.jypn, + showPriorities: true, + nextIterations: 20 +} + +export const txxw: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.jvmi, + showPriorities: true +} + +export const eijx: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.bzpj, + showPriorities: true +} + +export const kmgw: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.abhd, + showPriorities: true +} + +export const xbki: ExpressionRunnerShorthandConfig = { + runner: 'playButtonOnly', + skipToTheEnd: false, + initialExpressionContainer: initialExpressionContainers.jvmi, + showPriorities: true, + speed: 4, + showDefaultAndActiveOnly: true } diff --git a/scripts/lib/stepExpressionContainer.ts b/scripts/lib/stepExpressionContainer.ts index 95f747b38..9e3c369c9 100644 --- a/scripts/lib/stepExpressionContainer.ts +++ b/scripts/lib/stepExpressionContainer.ts @@ -1,12 +1,18 @@ import getConflictsToUnused from 'scripts/lib/getConflictsToUnused' import { isContainerWithState } from 'src/lib/expressionContainerGuards' -import findNextCallExpressionAndParent from 'scripts/lib/findNextCallExpressionAndParent' +import findNextExecutableAndParent from 'scripts/lib/findNextExecutableAndParent' import hasUnboundVariables from 'scripts/lib/hasUnboundVariables' import prioritizeExpressionContainer from 'scripts/lib/prioritizeExpressionContainer' import resetExpressionContainer from 'scripts/lib/resetExpressionContainer' import replaceCallParentKey from 'scripts/lib/replaceCallParentKey' import replaceConditionalParentKey from 'scripts/lib/replaceConditionalParentKey' -import { isCall, isExecutableCallRegular } from 'src/lib/expressionTypeGuards' +import replaceBinaryParentKey from 'scripts/lib/replaceBinaryParentKey' +import calculateNumLeafNodes from 'scripts/lib/calculateNumLeafNodes' +import { + isCall, + isConditional, + isExecutableCallRegular +} from 'src/lib/expressionTypeGuards' import replaceFuncParentKey from 'scripts/lib/replaceFuncParentKey' import { removeCrossed, @@ -23,7 +29,9 @@ import { stepToConditionActive, stepToCaseProcessed, stepToShorthandComputed, - stepToAlphaConvertCallArg + stepToAlphaConvertCallArg, + stepToBinaryProcessed, + stepToBinaryActive } from 'scripts/lib/steps' import { ContainerWithState, @@ -33,6 +41,7 @@ import { ExecutableCallRegular, StepChild, ExecutableConditionalStatesDistributed, + ExecutableBinaryStatesDistributed, ExecutableCall, ExecutableCallShorthand } from 'src/types/ExpressionTypes' @@ -50,7 +59,7 @@ const stepExpressionContainerReset = ( const newContainer = prioritizeExpressionContainer( resetExpressionContainer(e) ) - const nextCallExpressionAndParent = findNextCallExpressionAndParent( + const nextCallExpressionAndParent = findNextExecutableAndParent( newContainer.expression ) if (nextCallExpressionAndParent.expression) { @@ -100,6 +109,30 @@ const stepConditional = ( throw new Error() } +const stepBinary = ( + e: ExecutableBinaryStatesDistributed +): { + nextExpression: ExecutableBinaryStatesDistributed | StepChild<'default'> + matchExists?: boolean + previouslyChangedExpressionState: ExpressionContainer['previouslyChangedExpressionState'] +} => { + switch (e.state) { + case 'default': { + return { + nextExpression: stepToBinaryActive(e), + previouslyChangedExpressionState: 'active' + } + } + case 'active': { + return { + nextExpression: stepToBinaryProcessed(e), + previouslyChangedExpressionState: 'default' + } + } + } + throw new Error() +} + const stepShorthand = ( e: ExecutableCallShorthand ): { @@ -276,8 +309,10 @@ const runStep = ( callParent, funcParent, conditionalParent, - callParentKey - } = findNextCallExpressionAndParent(e.expression) + callParentKey, + binaryParentKey, + binaryParent + } = findNextExecutableAndParent(e.expression) if (!expression) { // Special case - already done to begin with return { @@ -295,9 +330,17 @@ const runStep = ( ? isExecutableCallRegular(expression) ? stepRegular(expression, stepOptions, e.matchExists) : stepShorthand(expression) - : stepConditional(expression) + : isConditional(expression) + ? stepConditional(expression) + : stepBinary(expression) - if (!callParent && !callParentKey && !funcParent && !conditionalParent) { + if ( + !callParent && + !callParentKey && + !funcParent && + !conditionalParent && + !binaryParent + ) { const newContainer = { expression: previouslyChangedExpressionState === 'betaReducePreviewAfter' @@ -307,14 +350,17 @@ const runStep = ( matchExists, activePriority } + const numLeafNodes = calculateNumLeafNodes(nextExpression) return previouslyChangedExpressionState === 'default' ? { ...newContainer, - containerState: 'needsReset' + containerState: 'needsReset', + numLeafNodes } : { ...newContainer, - containerState: 'stepped' + containerState: 'stepped', + numLeafNodes } } @@ -339,10 +385,19 @@ const runStep = ( conditionalParent, nextExpression ) + } else if (binaryParent && binaryParentKey) { + newExpression = replaceBinaryParentKey( + e.expression, + binaryParentKey, + binaryParent, + nextExpression + ) } else { throw new Error() } + const numLeafNodes = calculateNumLeafNodes(newExpression) + if (previouslyChangedExpressionState === 'default') { return { ...e, @@ -350,7 +405,8 @@ const runStep = ( containerState: 'needsReset', matchExists, activePriority, - previouslyChangedExpressionState + previouslyChangedExpressionState, + numLeafNodes } } else { return { @@ -362,7 +418,8 @@ const runStep = ( containerState: 'stepped', matchExists, activePriority, - previouslyChangedExpressionState + previouslyChangedExpressionState, + numLeafNodes } } } diff --git a/scripts/lib/steps/index.ts b/scripts/lib/steps/index.ts index d57a1309b..a109c81b3 100644 --- a/scripts/lib/steps/index.ts +++ b/scripts/lib/steps/index.ts @@ -14,6 +14,12 @@ export { export { default as stepToNeedsAlphaConvert } from 'scripts/lib/steps/stepToNeedsAlphaConvert' +export { + default as stepToBinaryActive +} from 'scripts/lib/steps/stepToBinaryActive' +export { + default as stepToBinaryProcessed +} from 'scripts/lib/steps/stepToBinaryProcessed' export { default as stepToShowCallArg } from 'scripts/lib/steps/stepToShowCallArg' diff --git a/scripts/lib/steps/stepToActive.ts b/scripts/lib/steps/stepToActive.ts index 59d86a4f6..a54b4948e 100644 --- a/scripts/lib/steps/stepToActive.ts +++ b/scripts/lib/steps/stepToActive.ts @@ -3,6 +3,7 @@ import { isVariable, isCall, isConditional, + isBinary, isExecutableCallShorthand } from 'src/lib/expressionTypeGuards' import { @@ -18,6 +19,8 @@ import { VariableExpression, VariableWithEmphasizePriorityAndState, ConditionalExpression, + BinaryExpression, + StepBinary, StepConditional, ExecutableCallShorthand, ExecutableStepCallShorthand, @@ -29,6 +32,7 @@ function toActive(e: VariableShorthandFunc): StepVariableShorthandFunc<'active'> function toActive(e: VariableExpression): StepVariable<'active'> function toActive(e: FunctionExpression): StepFunction<'active'> function toActive(e: ConditionalExpression): StepConditional<'active'> +function toActive(e: BinaryExpression): StepBinary<'active'> function toActive(e: CallExpression): NonExecutableStepCall<'active'> function toActive( e: VariableExpression | FunctionExpression @@ -63,6 +67,13 @@ function toActive(e: Expression): StepChild<'active'> { trueCase: toActive(e.trueCase), falseCase: toActive(e.falseCase) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toActive(e.first), + second: toActive(e.second) + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToAlphaConvertCallArg.ts b/scripts/lib/steps/stepToAlphaConvertCallArg.ts index fb174ae9f..27b4ea5f4 100644 --- a/scripts/lib/steps/stepToAlphaConvertCallArg.ts +++ b/scripts/lib/steps/stepToAlphaConvertCallArg.ts @@ -2,7 +2,8 @@ import { isFunction, isCall, isVariable, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { activeFuncArg } from 'scripts/lib/steps/stepToShowFuncUnbound' import { @@ -17,6 +18,8 @@ import { StepConditional, StepVariable, VariableExpression, + BinaryExpression, + StepBinary, ConditionalExpression } from 'src/types/ExpressionTypes' import getConflictsToUnused, { @@ -38,6 +41,11 @@ export function toAlphaConvertCallArg( conflicts: ConflictingNamesToUnusedNames, argSide: boolean ): StepConditional<'alphaConvertDone'> +export function toAlphaConvertCallArg( + e: BinaryExpression, + conflicts: ConflictingNamesToUnusedNames, + argSide: boolean +): StepBinary<'alphaConvertDone'> export function toAlphaConvertCallArg( e: CallExpression, conflicts: ConflictingNamesToUnusedNames, @@ -113,6 +121,13 @@ export function toAlphaConvertCallArg( trueCase: toAlphaConvertCallArg(e.trueCase, conflicts, argSide), falseCase: toAlphaConvertCallArg(e.falseCase, conflicts, argSide) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toAlphaConvertCallArg(e.first, conflicts, argSide), + second: toAlphaConvertCallArg(e.second, conflicts, argSide) + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToBetaReducePreviewAfter.ts b/scripts/lib/steps/stepToBetaReducePreviewAfter.ts index 0c07ef0b0..aa32afaf8 100644 --- a/scripts/lib/steps/stepToBetaReducePreviewAfter.ts +++ b/scripts/lib/steps/stepToBetaReducePreviewAfter.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { activeFuncArg } from 'scripts/lib/steps/stepToShowFuncUnbound' import { @@ -17,6 +18,8 @@ import { StepChild, StepFunction, StepVariable, + BinaryExpression, + StepBinary, VariableExpression } from 'src/types/ExpressionTypes' import { VariableNames } from 'src/types/VariableNames' @@ -30,6 +33,9 @@ function matchBetaReduced( function matchBetaReduced( e: ConditionalExpression ): StepConditional<'betaReducePreviewAfter'> +function matchBetaReduced( + e: BinaryExpression +): StepBinary<'betaReducePreviewAfter'> function matchBetaReduced( e: CallExpression ): NonExecutableStepCall<'betaReducePreviewAfter'> @@ -71,6 +77,15 @@ function matchBetaReduced(e: Expression): StepChild<'betaReducePreviewAfter'> { trueCase: trueCase, falseCase: falseCase } + } else if (isBinary(e)) { + const first = matchBetaReduced(e.first) + const second = matchBetaReduced(e.second) + return { + ...e, + state: 'default', + first: first, + second: second + } } else { throw new Error() } @@ -94,6 +109,12 @@ export function toBetaReducePreviewAfter( to: Expression, funcSide: boolean ): StepConditional<'betaReducePreviewAfter'> +export function toBetaReducePreviewAfter( + e: BinaryExpression, + fromName: VariableNames, + to: Expression, + funcSide: boolean +): StepBinary<'betaReducePreviewAfter'> export function toBetaReducePreviewAfter( e: CallExpression, fromName: VariableNames, @@ -190,6 +211,15 @@ export function toBetaReducePreviewAfter( trueCase: trueCase, falseCase: falseCase } + } else if (isBinary(e)) { + const first = toBetaReducePreviewAfter(e.first, fromName, to, funcSide) + const second = toBetaReducePreviewAfter(e.second, fromName, to, funcSide) + return { + ...e, + state: 'default', + first: first, + second: second + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToBetaReducePreviewBefore.ts b/scripts/lib/steps/stepToBetaReducePreviewBefore.ts index 6ea4637ca..f15638f05 100644 --- a/scripts/lib/steps/stepToBetaReducePreviewBefore.ts +++ b/scripts/lib/steps/stepToBetaReducePreviewBefore.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, @@ -15,6 +16,8 @@ import { StepFunction, StepVariable, VariableExpression, + BinaryExpression, + StepBinary, VariableWithState, ConditionalExpression, StepConditional @@ -45,6 +48,14 @@ export function toBetaReducePreviewBefore( nextExpression: StepConditional<'betaReducePreviewBefore'> matchExists: boolean } +export function toBetaReducePreviewBefore( + e: BinaryExpression, + fromName: VariableNames, + funcSide: boolean +): { + nextExpression: StepBinary<'betaReducePreviewBefore'> + matchExists: boolean +} export function toBetaReducePreviewBefore( e: CallExpression, fromName: VariableNames, @@ -165,6 +176,18 @@ export function toBetaReducePreviewBefore( matchExists: condition.matchExists || trueCase.matchExists || falseCase.matchExists } + } else if (isBinary(e)) { + const first = toBetaReducePreviewBefore(e.first, fromName, funcSide) + const second = toBetaReducePreviewBefore(e.second, fromName, funcSide) + return { + nextExpression: { + ...e, + state: 'default', + first: first.nextExpression, + second: second.nextExpression + }, + matchExists: first.matchExists || second.matchExists + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToBetaReducePreviewCrossed.ts b/scripts/lib/steps/stepToBetaReducePreviewCrossed.ts index 52f3dc105..9d7aa5990 100644 --- a/scripts/lib/steps/stepToBetaReducePreviewCrossed.ts +++ b/scripts/lib/steps/stepToBetaReducePreviewCrossed.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, @@ -17,6 +18,8 @@ import { VariableExpression, VariableWithState, ConditionalExpression, + BinaryExpression, + StepBinary, StepConditional } from 'src/types/ExpressionTypes' @@ -32,6 +35,10 @@ function toCrossed( e: ConditionalExpression, isCallArg: boolean ): StepConditional<'betaReducePreviewCrossed'> +function toCrossed( + e: BinaryExpression, + isCallArg: boolean +): StepBinary<'betaReducePreviewCrossed'> function toCrossed( e: CallExpression, isCallArg: boolean @@ -87,6 +94,13 @@ function toCrossed( trueCase: toCrossed(e.trueCase, isCallArg), falseCase: toCrossed(e.falseCase, isCallArg) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toCrossed(e.first, isCallArg), + second: toCrossed(e.second, isCallArg) + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToBinaryActive.ts b/scripts/lib/steps/stepToBinaryActive.ts new file mode 100644 index 000000000..4119b67ea --- /dev/null +++ b/scripts/lib/steps/stepToBinaryActive.ts @@ -0,0 +1,15 @@ +import { + ExecutableBinaryStatesDistributed, + ExecutableBinary +} from 'src/types/ExpressionTypes' + +const stepToBinaryActive = ( + e: ExecutableBinaryStatesDistributed +): ExecutableBinary<'active'> => { + return { + ...e, + state: 'active' + } +} + +export default stepToBinaryActive diff --git a/scripts/lib/steps/stepToBinaryProcessed.ts b/scripts/lib/steps/stepToBinaryProcessed.ts new file mode 100644 index 000000000..361f89b13 --- /dev/null +++ b/scripts/lib/steps/stepToBinaryProcessed.ts @@ -0,0 +1,23 @@ +import { + ExecutableBinaryStatesDistributed, + StepChild +} from 'src/types/ExpressionTypes' + +const stepToBinaryProcessed = ( + e: ExecutableBinaryStatesDistributed +): StepChild<'default'> => { + return { + type: 'variable', + name: 'shorthandNumber', + bound: true, + highlightType: 'default', + topLeftBadgeType: 'none', + bottomRightBadgeType: 'none', + emphasizePriority: false, + argPriorityAgg: [], + funcPriorityAgg: [], + shorthandNumber: e.first.shorthandNumber * e.second.shorthandNumber + } +} + +export default stepToBinaryProcessed diff --git a/scripts/lib/steps/stepToNeedsAlphaConvert.ts b/scripts/lib/steps/stepToNeedsAlphaConvert.ts index 12effdcb1..f4273d817 100644 --- a/scripts/lib/steps/stepToNeedsAlphaConvert.ts +++ b/scripts/lib/steps/stepToNeedsAlphaConvert.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { activeFuncArg } from 'scripts/lib/steps/stepToShowFuncUnbound' import { @@ -17,6 +18,8 @@ import { StepChild, StepFunction, StepVariable, + BinaryExpression, + StepBinary, VariableExpression } from 'src/types/ExpressionTypes' import { ConflictingNamesToUnusedNames } from 'scripts/lib/getConflictsToUnused' @@ -36,6 +39,11 @@ export function toNeedsAlphaConvert( conflicts: ConflictingNamesToUnusedNames, funcSide: boolean ): StepConditional<'needsAlphaConvert'> +export function toNeedsAlphaConvert( + e: BinaryExpression, + conflicts: ConflictingNamesToUnusedNames, + funcSide: boolean +): StepBinary<'needsAlphaConvert'> export function toNeedsAlphaConvert( e: CallExpression, conflicts: ConflictingNamesToUnusedNames, @@ -118,6 +126,13 @@ export function toNeedsAlphaConvert( trueCase: toNeedsAlphaConvert(e.trueCase, conflicts, funcSide), falseCase: toNeedsAlphaConvert(e.falseCase, conflicts, funcSide) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toNeedsAlphaConvert(e.first, conflicts, funcSide), + second: toNeedsAlphaConvert(e.second, conflicts, funcSide) + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToShowCallArg.ts b/scripts/lib/steps/stepToShowCallArg.ts index 33d679eb9..a1ccc4d82 100644 --- a/scripts/lib/steps/stepToShowCallArg.ts +++ b/scripts/lib/steps/stepToShowCallArg.ts @@ -2,6 +2,7 @@ import { isFunction, isVariable, isCall, + isBinary, isConditional } from 'src/lib/expressionTypeGuards' import { @@ -14,6 +15,8 @@ import { StepChild, StepConditional, ConditionalExpression, + BinaryExpression, + StepBinary, StepFunction, StepVariable, VariableExpression @@ -31,6 +34,10 @@ export function toShowCallArg( e: ConditionalExpression, funcSide: boolean ): StepConditional<'showCallArg'> +export function toShowCallArg( + e: BinaryExpression, + funcSide: boolean +): StepBinary<'showCallArg'> export function toShowCallArg( e: CallExpression, funcSide: boolean @@ -84,6 +91,13 @@ export function toShowCallArg( trueCase: toShowCallArg(e.trueCase, funcSide), falseCase: toShowCallArg(e.falseCase, funcSide) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toShowCallArg(e.first, funcSide), + second: toShowCallArg(e.second, funcSide) + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToShowFuncArg.ts b/scripts/lib/steps/stepToShowFuncArg.ts index e996f968f..6bba35fea 100644 --- a/scripts/lib/steps/stepToShowFuncArg.ts +++ b/scripts/lib/steps/stepToShowFuncArg.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, @@ -13,6 +14,8 @@ import { StepConditional, ConditionalExpression, NonExecutableStepCall, + BinaryExpression, + StepBinary, StepChild, StepFunction, StepVariable, @@ -32,6 +35,10 @@ export function toShowFuncArg( e: ConditionalExpression, funcSide: boolean ): StepConditional<'showFuncArg'> +export function toShowFuncArg( + e: BinaryExpression, + funcSide: boolean +): StepBinary<'showFuncArg'> export function toShowFuncArg( e: CallExpression, funcSide: boolean @@ -85,6 +92,13 @@ export function toShowFuncArg( trueCase: toShowFuncArg(e.trueCase, funcSide), falseCase: toShowFuncArg(e.falseCase, funcSide) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toShowFuncArg(e.first, funcSide), + second: toShowFuncArg(e.second, funcSide) + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToShowFuncBound.ts b/scripts/lib/steps/stepToShowFuncBound.ts index 9ac8e223b..cc82119ba 100644 --- a/scripts/lib/steps/stepToShowFuncBound.ts +++ b/scripts/lib/steps/stepToShowFuncBound.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { activeFuncArg } from 'scripts/lib/steps/stepToShowFuncUnbound' import { @@ -13,6 +14,8 @@ import { FunctionExpression, StepConditional, ConditionalExpression, + BinaryExpression, + StepBinary, NonExecutableStepCall, StepChild, StepFunction, @@ -35,6 +38,11 @@ export function toShowFuncBound( funcSide: boolean, highlight: boolean ): StepConditional<'showFuncBound'> +export function toShowFuncBound( + e: BinaryExpression, + funcSide: boolean, + highlight: boolean +): StepBinary<'showFuncBound'> export function toShowFuncBound( e: CallExpression, funcSide: boolean, @@ -110,6 +118,13 @@ export function toShowFuncBound( trueCase: toShowFuncBound(e.trueCase, funcSide, highlight), falseCase: toShowFuncBound(e.falseCase, funcSide, highlight) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toShowFuncBound(e.first, funcSide, highlight), + second: toShowFuncBound(e.second, funcSide, highlight) + } } else { throw new Error() } diff --git a/scripts/lib/steps/stepToShowFuncUnbound.ts b/scripts/lib/steps/stepToShowFuncUnbound.ts index f1f7d3fa3..04579e194 100644 --- a/scripts/lib/steps/stepToShowFuncUnbound.ts +++ b/scripts/lib/steps/stepToShowFuncUnbound.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, @@ -11,6 +12,8 @@ import { Expression, FunctionExpression, StepConditional, + BinaryExpression, + StepBinary, ConditionalExpression, NonExecutableStepCall, StepChild, @@ -35,6 +38,11 @@ export function toShowFuncUnbound( funcSide: boolean, highlight: boolean ): StepConditional<'showFuncUnbound'> +export function toShowFuncUnbound( + e: BinaryExpression, + funcSide: boolean, + highlight: boolean +): StepBinary<'showFuncUnbound'> export function toShowFuncUnbound( e: CallExpression, funcSide: boolean, @@ -108,6 +116,13 @@ export function toShowFuncUnbound( trueCase: toShowFuncUnbound(e.trueCase, funcSide, highlight), falseCase: toShowFuncUnbound(e.falseCase, funcSide, highlight) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toShowFuncUnbound(e.first, funcSide, highlight), + second: toShowFuncUnbound(e.second, funcSide, highlight) + } } else { throw new Error() } diff --git a/scripts/lib/toDefault.ts b/scripts/lib/toDefault.ts index 4b9c3b429..3cd169593 100644 --- a/scripts/lib/toDefault.ts +++ b/scripts/lib/toDefault.ts @@ -2,7 +2,8 @@ import { isFunction, isVariable, isCall, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, @@ -14,7 +15,11 @@ import { StepVariable, VariableExpression, VariableShorthandNumber, - StepVariableShorthandNumber + StepVariableShorthandNumber, + ConditionalExpression, + StepConditional, + BinaryExpression, + StepBinary } from 'src/types/ExpressionTypes' export default function toDefault( @@ -26,6 +31,13 @@ export default function toDefault( export default function toDefault( e: FunctionExpression ): StepFunction<'default'> +export default function toDefault( + e: FunctionExpression +): StepFunction<'default'> +export default function toDefault(e: BinaryExpression): StepBinary<'default'> +export default function toDefault( + e: ConditionalExpression +): StepConditional<'default'> export default function toDefault( e: CallExpression ): NonExecutableStepCall<'default'> @@ -62,6 +74,13 @@ export default function toDefault(e: Expression): StepChild<'default'> { trueCase: toDefault(e.trueCase), falseCase: toDefault(e.falseCase) } + } else if (isBinary(e)) { + return { + ...e, + state: 'default', + first: toDefault(e.first), + second: toDefault(e.second) + } } else { throw new Error() } diff --git a/scripts/precomputeExpressionContainers.ts b/scripts/precomputeExpressionContainers.ts index 910656101..14019a42f 100644 --- a/scripts/precomputeExpressionContainers.ts +++ b/scripts/precomputeExpressionContainers.ts @@ -13,8 +13,6 @@ const precomputeFile = (key: string) => { hideControls, explanationsVisibility, hidePriorities, - variableSize, - containerSize, hidePlayButton, showAllShowSteps, hideBottomRightBadges, @@ -27,7 +25,8 @@ const precomputeFile = (key: string) => { highlightFunctions, convert, crossed, - skipActive + skipActive, + showDefaultAndActiveOnly } = config const expressionContainersContents = `${JSON.stringify( @@ -37,8 +36,6 @@ const precomputeFile = (key: string) => { hideControls, explanationsVisibility, hidePriorities, - variableSize, - containerSize, hidePlayButton, hideBottomRightBadges, skipToTheEnd, @@ -51,7 +48,8 @@ const precomputeFile = (key: string) => { showAllShowSteps, convert, crossed, - skipActive + skipActive, + showDefaultAndActiveOnly }, null, 2 diff --git a/src/components/BinaryContext.tsx b/src/components/BinaryContext.tsx new file mode 100644 index 000000000..914676175 --- /dev/null +++ b/src/components/BinaryContext.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { BinaryExpression } from 'src/types/ExpressionTypes' + +export interface BinaryContextProps { + binaryState?: BinaryExpression['state'] + inBinaryActive?: boolean +} + +export const binaryContextDefault: BinaryContextProps = {} + +export default React.createContext(binaryContextDefault) diff --git a/src/components/BinaryExpressionBox.tsx b/src/components/BinaryExpressionBox.tsx new file mode 100644 index 000000000..e80c31e2a --- /dev/null +++ b/src/components/BinaryExpressionBox.tsx @@ -0,0 +1,80 @@ +/** @jsx jsx */ +import { css, jsx } from '@emotion/core' +import { useContext } from 'react' +import Flex from 'src/components/Flex' +import FlexCenter from 'src/components/FlexCenter' +import ExpressionBox from 'src/components/ExpressionBox' +import ExpressionPriorityContext from 'src/components/ExpressionPriorityContext' +import { BinaryExpression } from 'src/types/ExpressionTypes' +import BinaryContext from 'src/components/BinaryContext' +import MultiplyIcon from 'src/components/MultiplyIcon' +import ExpressionRunnerContext from 'src/components/ExpressionRunnerContext' +import { fontSizes, zIndices } from 'src/lib/theme' +import { VariableSizes } from 'src/types/VariableSizes' + +interface BinaryExpressionBoxProps { + expression: BinaryExpression +} + +const multiplyIconSize = (size: VariableSizes) => + ({ + lg: fontSizes(1.4), + md: fontSizes(1.2), + sm: fontSizes(1), + xs: fontSizes(0.85), + xxs: fontSizes(0.8), + xxxs: fontSizes(0.75) + }[size]) + +const BinaryExpressionBox = ({ expression }: BinaryExpressionBoxProps) => { + const { activePriority } = useContext(ExpressionPriorityContext) + const { inBinaryActive } = useContext(BinaryContext) + const { variableSize } = useContext(ExpressionRunnerContext) + return ( + + + + + + + +
+ +
+
+ + + +
+
+
+ ) +} + +export default BinaryExpressionBox diff --git a/src/components/BorderWrapper.tsx b/src/components/BorderWrapper.tsx index 3d71b2e4e..bbe527cb1 100644 --- a/src/components/BorderWrapper.tsx +++ b/src/components/BorderWrapper.tsx @@ -6,6 +6,7 @@ import ExpressionRunnerContext from 'src/components/ExpressionRunnerContext' import { zIndices, colors } from 'src/lib/theme' import { VariableExpression } from 'src/types/ExpressionTypes' import ConditionalContext from 'src/components/ConditionalContext' +import BinaryContext from 'src/components/BinaryContext' export interface BorderWrapperProps { bottomRightBadgeType: VariableExpression['bottomRightBadgeType'] @@ -23,7 +24,8 @@ const background = ({ topLeftBadgeType, isQuestion, started, - conditionalActive + conditionalActive, + binaryActive }: { highlightType: BorderWrapperProps['highlightType'] isDoneOrReady: boolean @@ -31,6 +33,7 @@ const background = ({ isQuestion: boolean started: boolean conditionalActive?: boolean + binaryActive?: boolean }): SerializedStyles | undefined => { if (isQuestion) { if (highlightType === 'highlighted') { @@ -48,6 +51,11 @@ const background = ({ background: ${colors('transparent')}; ` } + if (binaryActive) { + return css` + background: ${colors('transparent')}; + ` + } switch (highlightType) { case 'initialHighlighted': { return css` @@ -129,6 +137,7 @@ const BorderWrapper = ({ ExpressionRunnerContext ) const { conditionalOutermostState } = useContext(ConditionalContext) + const { inBinaryActive } = useContext(BinaryContext) return ( diff --git a/src/components/CustomEmoji/MultiplySvg.tsx b/src/components/CustomEmoji/MultiplySvg.tsx new file mode 100644 index 000000000..efffe8b17 --- /dev/null +++ b/src/components/CustomEmoji/MultiplySvg.tsx @@ -0,0 +1,17 @@ +import * as React from 'react' + +const MultiplySvg = (props: React.SVGProps) => ( + + + + + + + +) + +export default MultiplySvg diff --git a/src/components/CustomEmoji/MultiplyWhiteSvg.tsx b/src/components/CustomEmoji/MultiplyWhiteSvg.tsx new file mode 100644 index 000000000..652e9be7e --- /dev/null +++ b/src/components/CustomEmoji/MultiplyWhiteSvg.tsx @@ -0,0 +1,17 @@ +import * as React from 'react' + +const MultiplyWhiteSvg = (props: React.SVGProps) => ( + + + + + + + +) + +export default MultiplyWhiteSvg diff --git a/src/components/CustomEmoji/QuestionMinusOne.tsx b/src/components/CustomEmoji/QuestionMinusOne.tsx new file mode 100644 index 000000000..12cb05ff7 --- /dev/null +++ b/src/components/CustomEmoji/QuestionMinusOne.tsx @@ -0,0 +1,35 @@ +import * as React from 'react' + +const QuestionMinusOne = (props: React.SVGProps) => ( + + + + + + + + + + + + + + + + + +) + +export default QuestionMinusOne diff --git a/src/components/CustomEmoji/index.tsx b/src/components/CustomEmoji/index.tsx index 15d71f473..c7927e180 100644 --- a/src/components/CustomEmoji/index.tsx +++ b/src/components/CustomEmoji/index.tsx @@ -24,7 +24,10 @@ import PlusOneSvg from 'src/components/CustomEmoji/PlusOneSvg' import QuestionFoodGreySvg from 'src/components/CustomEmoji/QuestionFoodGreySvg' import SingleArrowSvg from 'src/components/CustomEmoji/SingleArrowSvg' import SingleArrowReverseSvg from 'src/components/CustomEmoji/SingleArrowReverseSvg' +import MultiplySvg from 'src/components/CustomEmoji/MultiplySvg' +import MultiplyWhiteSvg from 'src/components/CustomEmoji/MultiplyWhiteSvg' import TwentyFourSvg from 'src/components/CustomEmoji/TwentyFourSvg' +import QuestionMinusOne from 'src/components/CustomEmoji/QuestionMinusOne' import TwentySvg from 'src/components/CustomEmoji/TwentySvg' import Emoji, { EmojiProps } from 'src/components/Emoji' @@ -55,7 +58,10 @@ export const customEmojiToComponent = { singleArrowReverse: SingleArrowReverseSvg, lambda: LambdaSvg, index: IndexSvg, - condition: ConditionSvg + condition: ConditionSvg, + multiply: MultiplySvg, + multiplyWhite: MultiplyWhiteSvg, + questionMinusOne: QuestionMinusOne } const CustomEmoji = ({ diff --git a/src/components/EmojiSeparator.tsx b/src/components/EmojiSeparator.tsx index 1ff4e26e3..77e4be458 100644 --- a/src/components/EmojiSeparator.tsx +++ b/src/components/EmojiSeparator.tsx @@ -16,7 +16,7 @@ interface EmojiSeparatorProps { emojis: string[] letters?: VariableNames[] nodes?: React.ReactNode[] - size: 'sm' | 'md' | 'lg' | 'mdsm' + size: 'xs' | 'sm' | 'md' | 'lg' | 'mdsm' alignCenter: boolean Component: React.ComponentType | string cssOverrides?: SerializedStyles @@ -27,6 +27,7 @@ interface EmojiSeparatorProps { const fontSize = (size: EmojiSeparatorProps['size']) => ({ + xs: [fontSizes(1.2), fontSizes(1.4)], sm: [fontSizes(1.4), fontSizes(1.6)], mdsm: [fontSizes(1.6), fontSizes(2)], md: [fontSizes(2), fontSizes(2.5)], @@ -35,6 +36,7 @@ const fontSize = (size: EmojiSeparatorProps['size']) => const margins = (size: EmojiSeparatorProps['size']) => ({ + xs: [spaces(1.75), spaces(2)], sm: [spaces(1.75), spaces(2)], mdsm: [spaces(1.5), spaces(1.75)], md: [spaces(1.25), spaces(1.5)], diff --git a/src/components/ExpressionBox.tsx b/src/components/ExpressionBox.tsx index d5a139d57..be818c112 100644 --- a/src/components/ExpressionBox.tsx +++ b/src/components/ExpressionBox.tsx @@ -6,13 +6,15 @@ import BorderWrapper, { BorderWrapperProps } from 'src/components/BorderWrapper' import CallExpressionBox from 'src/components/CallExpressionBox' import RepeatExpressionBox from 'src/components/RepeatExpressionBox' import FunctionExpressionBox from 'src/components/FunctionExpressionBox' +import BinaryExpressionBox from 'src/components/BinaryExpressionBox' import VariableExpressionBox from 'src/components/VariableExpressionBox' import ConditionalExpressionBox from 'src/components/ConditionalExpressionBox' import { isCall, isVariable, isFunction, - isConditional + isConditional, + isBinary } from 'src/lib/expressionTypeGuards' import { Expression } from 'src/types/ExpressionTypes' import ExpressionRunnerContext from 'src/components/ExpressionRunnerContext' @@ -93,6 +95,8 @@ const ExpressionBox = ({ expression, topLevel }: ExpressionBoxProps) => { return } else if (isConditional(expression)) { return + } else if (isBinary(expression)) { + return } else { return } diff --git a/src/components/ExpressionRunnerPrecomputed.tsx b/src/components/ExpressionRunnerPrecomputed.tsx index c22ac6011..d52c6539e 100644 --- a/src/components/ExpressionRunnerPrecomputed.tsx +++ b/src/components/ExpressionRunnerPrecomputed.tsx @@ -17,6 +17,8 @@ import { expressionRunnerContextDefault } from 'src/types/ExpressionRunnerTypes' import { ExpressionRunnerConfig } from 'scripts/lib/buildExpressionRunnerConfigFromShorthand' import { SteppedExpressionContainer } from 'src/types/ExpressionContainerTypes' import useInterval from 'src/hooks/useInterval' +import numLeafNodesToVariableSize from 'src/lib/numLeafNodesToVariableSize' +import functionDepthsToContainerSize from 'src/lib/functionDepthsToContainerSize' import CrossSvg from 'src/components/CrossSvg' import { LinkButton } from 'src/components/ContentTags/LinkButton' @@ -27,8 +29,6 @@ export interface ExpressionRunnerPrecomputedProps { hideControls: ExpressionRunnerConfig['hideControls'] explanationsVisibility: ExpressionRunnerConfig['explanationsVisibility'] hidePriorities: ExpressionRunnerConfig['hidePriorities'] - variableSize: ExpressionRunnerConfig['variableSize'] - containerSize: ExpressionRunnerConfig['containerSize'] hidePlayButton: ExpressionRunnerConfig['hidePlayButton'] hideBottomRightBadges: ExpressionRunnerConfig['hideBottomRightBadges'] skipToTheEnd: ExpressionRunnerConfig['skipToTheEnd'] @@ -57,8 +57,6 @@ const ExpressionRunnerPrecomputed = ({ hideControls, explanationsVisibility, hidePriorities, - variableSize, - containerSize, hidePlayButton, hideBottomRightBadges, skipToTheEnd, @@ -158,6 +156,12 @@ const ExpressionRunnerPrecomputed = ({ currentIndex > 0) const progessBarVisible = !hidePlayButton && !skipToTheEnd && (isPlaying || atLeastOneStepTaken) + const containerSize = functionDepthsToContainerSize( + expressionContainers[currentIndex].expression.maxNestedFunctionDepth || 0 + ) + const variableSize = numLeafNodesToVariableSize( + expressionContainers[currentIndex].numLeafNodes + ) return ( { > diff --git a/src/components/InlinePrioritiesLabel.tsx b/src/components/InlinePrioritiesLabel.tsx index 972a744ab..0c7279ce5 100644 --- a/src/components/InlinePrioritiesLabel.tsx +++ b/src/components/InlinePrioritiesLabel.tsx @@ -5,12 +5,10 @@ import { colors, lineHeights, radii } from 'src/lib/theme' const InlinePrioritiesLabel = ({ children, - revert, - square + revert }: { children: React.ReactNode revert?: boolean - square?: boolean }) => ( ( + + + +) + +export default MultiplyIcon diff --git a/src/components/Runners/Rwuw.tsx b/src/components/Runners/Ancc.tsx similarity index 63% rename from src/components/Runners/Rwuw.tsx rename to src/components/Runners/Ancc.tsx index 07c03a51d..6764858be 100644 --- a/src/components/Runners/Rwuw.tsx +++ b/src/components/Runners/Ancc.tsx @@ -1,12 +1,12 @@ import React from 'react' import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/rwuw.json' +import config from 'src/lib/runners/ancc.json' -const Rwuw = ({ children }: { children?: React.ReactNode }) => ( +const Ancc = ({ children }: { children?: React.ReactNode }) => ( // @ts-ignore {children} ) -export default Rwuw +export default Ancc diff --git a/src/components/Runners/Ddrg.tsx b/src/components/Runners/Eijx.tsx similarity index 63% rename from src/components/Runners/Ddrg.tsx rename to src/components/Runners/Eijx.tsx index 9ab0b7bb8..15ee640e3 100644 --- a/src/components/Runners/Ddrg.tsx +++ b/src/components/Runners/Eijx.tsx @@ -1,12 +1,12 @@ import React from 'react' import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/ddrg.json' +import config from 'src/lib/runners/eijx.json' -const Ddrg = ({ children }: { children?: React.ReactNode }) => ( +const Eijx = ({ children }: { children?: React.ReactNode }) => ( // @ts-ignore {children} ) -export default Ddrg +export default Eijx diff --git a/src/components/Runners/Jtxf.tsx b/src/components/Runners/Gzuj.tsx similarity index 63% rename from src/components/Runners/Jtxf.tsx rename to src/components/Runners/Gzuj.tsx index 956df9f2a..38dd1a22e 100644 --- a/src/components/Runners/Jtxf.tsx +++ b/src/components/Runners/Gzuj.tsx @@ -1,12 +1,12 @@ import React from 'react' import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/jtxf.json' +import config from 'src/lib/runners/gzuj.json' -const Jtxf = ({ children }: { children?: React.ReactNode }) => ( +const Gzuj = ({ children }: { children?: React.ReactNode }) => ( // @ts-ignore {children} ) -export default Jtxf +export default Gzuj diff --git a/src/components/Runners/Qaoa.tsx b/src/components/Runners/Kmgw.tsx similarity index 63% rename from src/components/Runners/Qaoa.tsx rename to src/components/Runners/Kmgw.tsx index 51c6b8a51..244819b56 100644 --- a/src/components/Runners/Qaoa.tsx +++ b/src/components/Runners/Kmgw.tsx @@ -1,12 +1,12 @@ import React from 'react' import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/qaoa.json' +import config from 'src/lib/runners/kmgw.json' -const Qaoa = ({ children }: { children?: React.ReactNode }) => ( +const Kmgw = ({ children }: { children?: React.ReactNode }) => ( // @ts-ignore {children} ) -export default Qaoa +export default Kmgw diff --git a/src/components/Runners/Olqy.tsx b/src/components/Runners/Olqy.tsx new file mode 100644 index 000000000..ba29a87e1 --- /dev/null +++ b/src/components/Runners/Olqy.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/olqy.json' + +const Olqy = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Olqy diff --git a/src/components/Runners/Potg.tsx b/src/components/Runners/Potg.tsx new file mode 100644 index 000000000..27311e8ab --- /dev/null +++ b/src/components/Runners/Potg.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/potg.json' + +const Potg = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Potg diff --git a/src/components/Runners/Qurt.tsx b/src/components/Runners/Qurt.tsx new file mode 100644 index 000000000..14d0cb324 --- /dev/null +++ b/src/components/Runners/Qurt.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/qurt.json' + +const Qurt = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Qurt diff --git a/src/components/Runners/Rrmc.tsx b/src/components/Runners/Rrmc.tsx new file mode 100644 index 000000000..6d3b7c7b5 --- /dev/null +++ b/src/components/Runners/Rrmc.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/rrmc.json' + +const Rrmc = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Rrmc diff --git a/src/components/Runners/Spki.tsx b/src/components/Runners/Spki.tsx deleted file mode 100644 index 393912ed7..000000000 --- a/src/components/Runners/Spki.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/spki.json' - -const Spki = ({ children }: { children?: React.ReactNode }) => ( - // @ts-ignore - - {children} - -) - -export default Spki diff --git a/src/components/Runners/Trwj.tsx b/src/components/Runners/Trwj.tsx new file mode 100644 index 000000000..bc993859a --- /dev/null +++ b/src/components/Runners/Trwj.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/trwj.json' + +const Trwj = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Trwj diff --git a/src/components/Runners/Txxw.tsx b/src/components/Runners/Txxw.tsx new file mode 100644 index 000000000..302095660 --- /dev/null +++ b/src/components/Runners/Txxw.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/txxw.json' + +const Txxw = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Txxw diff --git a/src/components/Runners/Xbki.tsx b/src/components/Runners/Xbki.tsx new file mode 100644 index 000000000..7d072ff68 --- /dev/null +++ b/src/components/Runners/Xbki.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/xbki.json' + +const Xbki = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Xbki diff --git a/src/components/Runners/Zick.tsx b/src/components/Runners/Zick.tsx new file mode 100644 index 000000000..00756882d --- /dev/null +++ b/src/components/Runners/Zick.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/zick.json' + +const Zick = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Zick diff --git a/src/components/Runners/Zlfx.tsx b/src/components/Runners/Zlfx.tsx new file mode 100644 index 000000000..fcce6bddc --- /dev/null +++ b/src/components/Runners/Zlfx.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/zlfx.json' + +const Zlfx = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Zlfx diff --git a/src/components/Runners/index.ts b/src/components/Runners/index.ts index f3e9eb694..f7cf2c8f3 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -361,12 +361,20 @@ export { default as Vqyl } from 'src/components/Runners/Vqyl' export { default as Wzqv } from 'src/components/Runners/Wzqv' export { default as Nvdn } from 'src/components/Runners/Nvdn' export { default as Uhqo } from 'src/components/Runners/Uhqo' -export { default as Rwuw } from 'src/components/Runners/Rwuw' -export { default as Qaoa } from 'src/components/Runners/Qaoa' export { default as Kzkg } from 'src/components/Runners/Kzkg' -export { default as Jtxf } from 'src/components/Runners/Jtxf' +export { default as Trwj } from 'src/components/Runners/Trwj' +export { default as Potg } from 'src/components/Runners/Potg' export { default as Aklf } from 'src/components/Runners/Aklf' +export { default as Olqy } from 'src/components/Runners/Olqy' export { default as Gemh } from 'src/components/Runners/Gemh' export { default as Unxf } from 'src/components/Runners/Unxf' -export { default as Ddrg } from 'src/components/Runners/Ddrg' -export { default as Spki } from 'src/components/Runners/Spki' +export { default as Zick } from 'src/components/Runners/Zick' +export { default as Zlfx } from 'src/components/Runners/Zlfx' +export { default as Rrmc } from 'src/components/Runners/Rrmc' +export { default as Qurt } from 'src/components/Runners/Qurt' +export { default as Gzuj } from 'src/components/Runners/Gzuj' +export { default as Ancc } from 'src/components/Runners/Ancc' +export { default as Txxw } from 'src/components/Runners/Txxw' +export { default as Eijx } from 'src/components/Runners/Eijx' +export { default as Kmgw } from 'src/components/Runners/Kmgw' +export { default as Xbki } from 'src/components/Runners/Xbki' diff --git a/src/components/VariableExpressionBox.tsx b/src/components/VariableExpressionBox.tsx index 07f84285f..23043f79d 100644 --- a/src/components/VariableExpressionBox.tsx +++ b/src/components/VariableExpressionBox.tsx @@ -8,6 +8,7 @@ import BottomRightBadge from 'src/components/BottomRightBadge' import ExpressionPrioritiesLabel from 'src/components/ExpressionPrioritiesLabel' import ExpressionRunnerContext from 'src/components/ExpressionRunnerContext' import ConditionalContext from 'src/components/ConditionalContext' +import BinaryContext from 'src/components/BinaryContext' import TopLeftBadge from 'src/components/TopLeftBadge' import { fontSizes, spaces, zIndices, colors } from 'src/lib/theme' import letterEmojiMapping from 'src/lib/letterEmojiMapping' @@ -21,19 +22,7 @@ interface VariableExpressionBoxProps { expression: VariableExpression } -export const variableExpressionBoxPaddingTop = ( - size: ExpressionRunnerContextProps['variableSize'] -) => - ({ - lg: spaces(0.375), - md: spaces(0.25), - sm: spaces(0.2), - xs: spaces(0.2), - xxs: spaces(0.2), - xxxs: spaces(0.2) - }[size]) - -export const variableExpressionBoxPaddingBottom = ( +export const variableExpressionBoxPadding = ( size: ExpressionRunnerContextProps['variableSize'] ) => ({ @@ -351,6 +340,7 @@ const VariableEmoji = ({ expression }: VariableExpressionBoxProps) => { const VariableExpressionBox = ({ expression }: VariableExpressionBoxProps) => { const { hidePriorities, variableSize } = useContext(ExpressionRunnerContext) const { conditionalState } = useContext(ConditionalContext) + const { binaryState } = useContext(BinaryContext) return ( <> {!hidePriorities && ( @@ -359,7 +349,8 @@ const VariableExpressionBox = ({ expression }: VariableExpressionBoxProps) => { position="topleft" emphasize={ expression.emphasizePriority || - !!(conditionalState && conditionalState !== 'default') + !!(conditionalState && conditionalState !== 'default') || + !!(binaryState && binaryState !== 'default') } /> )} @@ -367,8 +358,8 @@ const VariableExpressionBox = ({ expression }: VariableExpressionBoxProps) => { css={css` flex: 1; font-size: ${variableExpressionBoxFontSize(variableSize)}; - padding: ${variableExpressionBoxPaddingTop(variableSize)} - ${spaces(0.5)} ${variableExpressionBoxPaddingBottom(variableSize)}; + padding: ${variableExpressionBoxPadding(variableSize)} ${spaces(0.5)} + ${variableExpressionBoxPadding(variableSize)}; `} > @@ -379,7 +370,8 @@ const VariableExpressionBox = ({ expression }: VariableExpressionBoxProps) => { position="bottomleft" emphasize={ expression.emphasizePriority || - !!(conditionalState && conditionalState !== 'default') + !!(conditionalState && conditionalState !== 'default') || + !!(binaryState && binaryState !== 'default') } /> )} diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index 5584c8efd..148583704 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -2,7 +2,6 @@ import React from 'react' import EpisodeCardList from 'src/components/EpisodeCardList' import { P, - Bold, HighlightBold, Highlight, Ul, @@ -12,13 +11,14 @@ import H from 'src/components/H' import BubbleQuotes from 'src/components/BubbleQuotes' import Emoji from 'src/components/Emoji' import EmojiSeparator from 'src/components/EmojiSeparator' +import EmojiForLetter from 'src/components/EmojiForLetter' import EmojiNumber from 'src/components/EmojiNumber' import ExpressionRunnerSeparator from 'src/components/ExpressionRunnerSeparator' import CustomEmoji from 'src/components/CustomEmoji' import TwoColGrid from 'src/components/TwoColGrid' import * as R from 'src/components/Runners' import NextLessonButton from 'src/components/NextLessonButton' -import ExpressionRunnerCaptionOnly from 'src/components/ExpressionRunnerCaptionOnly' +import MultiplyIcon from 'src/components/MultiplyIcon' export default () => ( ( }, { type: 'summary', - title: <>ここからは、雰囲気で読み進めてみてください, + title: <>次が最後の題材です!, content: ( <> -

- ここから先は非常に複雑なので、雰囲気で読み進めてください!内容を完全に理解する必要はありません。 -

+

次が最後の題材です!あと少しだけお付き合いください!

完全に理解する必要はありません!} + description={<>もうすぐ終わります!} /> ) }, { - title: <>Yコンビネータと組み合わせると, + title: <>階乗, content: ( <> ( children: ( <>

- また、前回「 - - 」を再現するのに使った「 - Yコンビネータ - 」の弁当箱と組み合わせることで、さらに複雑な計算をすることもできる。 + ちなみに弁当箱は四則演算だけじゃなく、さらに複雑な計算をすることもできるぞ。

- - 前回「 - - 」を -
- 再現するのに使った「 - Yコンビネータ」 -
) }, @@ -783,7 +769,7 @@ export default () => ( type: 'thinking', children: ( <> -

どういうこと?

+

へえ、たとえば何ができるの?

) }, @@ -801,10 +787,48 @@ export default () => ( 」という計算だ。

+ , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + 階乗:
+ ある数からはじめて、1を引いていき、 +
+ {' '} + になるまで繰り返し掛け算をする + + } + /> + + ) + }, + { + type: 'thinking', + children: ( + <> +

うーん、具体的に説明してくれる?

+ + ) + }, + { + type: 'devil', + children: ( + <>

たとえば、「 - {' '} - の階乗」は、以下のようになる。実際に計算すると{' '} + + の階乗 + + 」は、以下のようになる。実際に計算すると{' '} になるぞ。

( />

同じように、「 - {' '} - の階乗」は、以下のようになる。実際に計算すると{' '} + + の階乗 + + 」は、以下のようになる。実際に計算すると{' '} になるぞ。

( ) }, + { + type: 'devil', + children: ( + <> +

こういった計算も、弁当箱で行うことができるんだ。

+

どういうことか説明しよう!

+ + ) + } + ]} + /> + + ) + }, + { + title: <>掛け算の省略表記, + content: ( + <> +

- この「階乗」は、先ほどの - 掛け算ができる弁当箱と、 - Yコンビネータ - の弁当箱を組み合わせて計算することができるんだ。 + まず、 + + 掛け算を計算できる弁当箱を、以下のように省略表記してみる。 + + こうしたほうがひと目で見て分かりやすいからな。

) } ]} /> - - と{' '} -
- 掛け算を計算できる弁当箱と… -
- - 「Yコンビネータ」の -
- 弁当箱を組み合わせることで… -
+ 掛け算を計算できる弁当箱を… - , - ✖️, - , - ✖️, - , - ✖️, - + 省略表記してみる + +

+ + 真ん中にある {' '} + のアイコンが、掛け算を示す + + ということか。 +

+ , + , + + ]} + description={ + <> + {' '} + ✖️{' '} + {' '} + を掛け算してくれる + + } + /> + + ) + }, + { + type: 'devil', + children: ( + <> +

+ そうだ。試しに、こちらを + してみるといい: +

+ + ) + } ]} - description={<>階乗を計算することができる!} /> + -

へー、そうなの!

+

+ なるほど、これで {' '} + ✖️ {' '} + を計算できるんだな。 +

) } @@ -919,7 +994,7 @@ export default () => ( ) }, { - title: <>掛け算の省略表記, + title: <>階乗の計算, content: ( <> ( type: 'devil', children: ( <> +

それでは、階乗を計算する方法をお見せしよう。

- まず、 - - 掛け算を計算できる弁当箱を、以下のように{' '} - ✖️印で省略してみる。 - - こうしたほうがひと目で見て分かりやすいからな。 + まず、こちらの弁当箱を見てみよう。 + + 上の と{' '} + の間に掛け算のアイコン{' '} + が使われている + + のに注目だ。

) } ]} /> - 掛け算を計算できる弁当箱を… - - - ✖️印で省略してみる - + + {' '} + の間に +
+ 掛け算のアイコン が使われている +

- ✖️ - 印を使うことで、見た目がシンプルになった! + 次に、上の弁当箱に、下の黄色の部分を追加してみよう。 +

+

+ ちなみに下半分は、前回も紹介した + Yコンビネータの弁当箱だ。

) } ]} /> + + 黄色の部分を追加。 +
+ 下半分はYコンビネータの弁当箱 +
+ +

+ この弁当箱を使うと、どんな数字の階乗も計算できるんだ。 +

+ + ) + }, + { + type: 'thinking', + children: ( + <> +

えー、本当かなあ?

+ + ) + } + ]} + /> ) }, { - title: <>階乗の計算, + title: ( + <> + の階乗 + + ), content: ( <> ( type: 'devil', children: ( <> -

それでは、階乗を計算する弁当箱をお見せしよう。

- こちらの弁当箱は、黄色の部分に、 - - 先ほど紹介した掛け算の弁当箱( - ✖️ - 印)と、Yコンビネータの弁当箱が入っている - - 。 + では、先ほどの弁当箱を使って {' '} + の階乗を計算してみよう。

+ , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗。 +
+ 実際に計算すると になる + + } + />

- この弁当箱を実行すると、 - - の階乗、すなわち{' '} - ✖️{' '} - ✖️{' '} - を計算してくれる - - んだ。 + 先ほどの弁当箱の上の部分に {' '} + を追加してみたぞ。

) } ]} /> - - 掛け算ができる弁当箱( - ✖️印)と -
- Yコンビネータ - の弁当箱を使うことで… -
- - - の階乗、すなわち -
- ✖️{' '} - ✖️{' '} - を計算できる! -
+ + 上の部分に を追加 + +

+ これを + してみよう! +

+
    + + ステップが非常に多いので、 + 3倍速で早送りするぞ。{' '} + + + + 早送り中は、目に優しくなるように弁当箱を半透明にしている。 + + + 待てない場合は、「 + → + 」を押してもいいぞ。 + +
+ + ) + } + ]} + /> + + +

まだ最後まで終わっていないが…気づいたかな?

+ + ) + }, { type: 'surprised', children: ( <> -

へー、すごい!

+

+ ✖️{' '} + ✖️{' '} + になった! +

) }, @@ -1029,127 +1177,271 @@ export default () => ( children: ( <>

- - 前のページで登場した弁当箱と、右上の部分が微妙に違う - - のが分かるかな? + そう。こうやって {' '} + の階乗を自動で計算してくれるんだ。 +

+

+ というわけで、最後まで + してみよう!

) } ]} /> - - - - 前回の弁当箱 -
(🅰️ - - 🅱️ を計算) -
- の右上部分: -
-
- - } - right={ - <> - - - 今回の弁当箱 -
- (階乗を計算) -
- の右上部分: -
-
- - } + + +

+ というわけで、先ほどの弁当箱は + {' '} + すると以下のように変化することで、 + {' '} + の階乗を自動で計算してくれるんだ。 +

+ + ) + } + ]} /> + + 上の部分に を追加 +
+ して + すると… +
+ + + 以下のように変化することで、 +
+ の階乗を計算してくれる +
+ + + + ) + }, + { + title: ( + <> + の階乗 + + ), + content: ( + <> -

完全には理解できなくていいが…

- この - - 右上部分の違いが、前回のように足し算を計算するか、今回のように階乗を計算するかの違いを生んでいる - - んだな。 + では最後に、先ほどの弁当箱を使って{' '} + の階乗を計算してみよう。 +

+ , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗。 +
+ 実際に計算すると になる + + } + /> +

+ 先ほどの弁当箱の上の部分に {' '} + を追加してみたぞ。 +

+ + ) + } + ]} + /> + + 上の部分に を追加 + + +

+ これも + してみよう! +

+ + ) + } + ]} + /> + + +

+ になった!

) }, { - type: 'thinking', + type: 'devil', children: ( <> -

なるほど…

+

+ どうだ、 + の階乗を計算できただろう? +

+ , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗。 +
+ 実際に計算すると になる + + } + /> ) }, + { + type: 'thinking', + children: ( + <> +

確かに…!

+ + ) + } + ]} + /> + + ) + }, + { + title: <>Yコンビネータのおかげ, + content: ( + <> +

- そして、先ほどの弁当箱の - - 一番上の {' '} - を他の数字に変えれば、その数字の階乗を計算できるというわけだ。 - + このように、先ほどの弁当箱は一番上の部分に入れた数字の階乗を計算できるんだ。

- たとえば に変えると、 - の階乗を計算できる。 + たとえば を入れると、 + {' '} + の階乗を計算してくれるというわけだ。

) } ]} /> - - 上の数字を に変えると… - + + + 一番上に を入れて +
+ すると… +
- - の階乗、すなわち + , + ✖️, + , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗を計算してくれる + + } + /> + +

+ つまり、先ほどの弁当箱を使うことで、 + + どんな大きな数字の階乗でも計算することができる + + んだ。 +

+ + ) + } + ]} + /> + + どんな大きな数字の階乗でも
- ✖️{' '} - ✖️{' '} - ✖️{' '} - を計算できる! -
+ 計算することができる! + + + , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗を計算してくれる + + } + /> -

へー、すごいなあ。完璧には理解できていないけど…

-
    - - 「階乗」は、「 - - になるまで掛け算を『 - 繰り返す』 - - 」ということだから、 - - - - 「繰り返す」のを可能にする「 - Yコンビネータ - 」の弁当箱が必要 - - というわけかな…? - -
+

なるほど、すごいなあ…

) }, @@ -1158,9 +1450,10 @@ export default () => ( children: ( <>

- その通りだ!上の弁当箱を完璧に理解するには、やはり早送りしてみないといけないが、今回は時間の都合上省略する。 + もちろん、こういった複雑な計算ができるのも、 + Yコンビネータ + の弁当箱のおかげだ。

-

それでもわたしが伝えたかったのは、

    @@ -1203,11 +1496,11 @@ export default () => ( , + , ✖️, - , + , ✖️, - , + , ✖️, ]} diff --git a/src/contents/demo.en.tsx b/src/contents/demo.en.tsx index e94b4d80e..7148456a3 100644 --- a/src/contents/demo.en.tsx +++ b/src/contents/demo.en.tsx @@ -325,6 +325,43 @@ const DemoCardList = () => ( ) + }, + { + title: <>Part 5: Factorials, + type: 'sideNote', + content: ( + <> + , + ✖️, + , + ✖️, + , + ✖️, + + ]} + /> + + ) + }, + { + title: ( + <> + Factorial of + + ), + content: ( + <> + + Calculates ✖️{' '} + ✖️{' '} + ✖️{' '} + + + + ) } ]} /> diff --git a/src/contents/demo.jp.tsx b/src/contents/demo.jp.tsx index 28f143f7a..adb555d07 100644 --- a/src/contents/demo.jp.tsx +++ b/src/contents/demo.jp.tsx @@ -311,6 +311,43 @@ const DemoCardList = () => ( ) + }, + { + title: <>パート5: 階乗, + type: 'sideNote', + content: ( + <> + , + ✖️, + , + ✖️, + , + ✖️, + + ]} + /> + + ) + }, + { + title: ( + <> + の階乗 + + ), + content: ( + <> + + ✖️{' '} + ✖️{' '} + ✖️{' '} + を計算 + + + ) } ]} /> diff --git a/src/lib/expressionTypeGuards.ts b/src/lib/expressionTypeGuards.ts index d89068b98..f73f75366 100644 --- a/src/lib/expressionTypeGuards.ts +++ b/src/lib/expressionTypeGuards.ts @@ -10,7 +10,9 @@ import { ExecutableConditional, RepeatExpression, ExecutableCallShorthand, - VariableShorthandFunc + VariableShorthandFunc, + BinaryExpression, + ExecutableBinary } from 'src/types/ExpressionTypes' export function isVariable( @@ -37,6 +39,12 @@ export function isConditional< return expression.type === 'conditional' } +export function isBinary( + expression: Expression +): expression is E { + return expression.type === 'binary' +} + export function isVariableShorthandNumber< V extends VariableShorthandNumber = VariableShorthandNumber >(expression: Expression): expression is V { @@ -78,6 +86,15 @@ export function isExecutableConditional( return isVariableShorthandNumber(expression.condition) } +export function isExecutableBinary( + expression: BinaryExpression +): expression is E { + return ( + isVariableShorthandNumber(expression.first) && + isVariableShorthandNumber(expression.second) + ) +} + export function isRepeat( expression: Expression ): expression is E { diff --git a/src/lib/functionDepthsToContainerSize.ts b/src/lib/functionDepthsToContainerSize.ts new file mode 100644 index 000000000..0a052354f --- /dev/null +++ b/src/lib/functionDepthsToContainerSize.ts @@ -0,0 +1,15 @@ +import { allMaxWidths } from 'src/lib/theme/maxWidths' + +const functionDepthsToContainerSize = ( + maxNestedFunctionDepth: number +): keyof typeof allMaxWidths => { + if (maxNestedFunctionDepth >= 5) { + return 'xs' + } else if (maxNestedFunctionDepth >= 3) { + return 'xsxs' + } else { + return 'xxs' + } +} + +export default functionDepthsToContainerSize diff --git a/src/lib/numLeafNodesToVariableSize.ts b/src/lib/numLeafNodesToVariableSize.ts new file mode 100644 index 000000000..704fe91cb --- /dev/null +++ b/src/lib/numLeafNodesToVariableSize.ts @@ -0,0 +1,19 @@ +import { VariableSizes } from 'src/types/VariableSizes' + +const numLeafNodesToVariableSize = (numLeafNodes: number): VariableSizes => { + if (numLeafNodes <= 5) { + return 'lg' + } else if (numLeafNodes <= 8) { + return 'md' + } else if (numLeafNodes <= 10) { + return 'sm' + } else if (numLeafNodes <= 12) { + return 'xs' + } else if (numLeafNodes <= 14) { + return 'xxs' + } else { + return 'xxxs' + } +} + +export default numLeafNodesToVariableSize diff --git a/src/lib/runners/aaov.json b/src/lib/runners/aaov.json index e778ae205..90698df1f 100644 --- a/src/lib/runners/aaov.json +++ b/src/lib/runners/aaov.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,24 +69,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "d", @@ -97,7 +105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +136,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -149,20 +161,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 } ], @@ -170,8 +190,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/abnp.json b/src/lib/runners/abnp.json index e4e25bb11..9abcc947e 100644 --- a/src/lib/runners/abnp.json +++ b/src/lib/runners/abnp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 } ], @@ -88,8 +98,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/aezk.json b/src/lib/runners/aezk.json index 183e3594f..ce1bbbbf3 100644 --- a/src/lib/runners/aezk.json +++ b/src/lib/runners/aezk.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,31 +70,35 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/afoh.json b/src/lib/runners/afoh.json index 9db668411..5fdffe909 100644 --- a/src/lib/runners/afoh.json +++ b/src/lib/runners/afoh.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -63,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -77,11 +78,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -95,11 +98,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -113,11 +118,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -131,11 +138,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -148,11 +157,13 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -166,13 +177,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -186,11 +200,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -204,11 +220,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -222,12 +240,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "conditionActive", "activePriority": 4 } ], @@ -235,8 +258,6 @@ "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/akik.json b/src/lib/runners/akik.json index 801928f68..d0d14e667 100644 --- a/src/lib/runners/akik.json +++ b/src/lib/runners/akik.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,22 +179,31 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -197,7 +219,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -223,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -236,15 +261,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -258,7 +287,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -270,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -282,7 +313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -298,7 +330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -312,7 +345,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -326,15 +360,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -347,25 +384,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -381,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -393,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -407,7 +453,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -420,15 +467,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -442,7 +493,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -454,7 +506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -466,7 +519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -482,7 +536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -496,7 +551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -510,15 +566,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -531,26 +590,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -566,7 +632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -578,7 +645,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -592,7 +660,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -605,15 +674,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -627,7 +700,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -639,7 +713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -651,7 +726,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -667,7 +743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -681,7 +758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -696,7 +774,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -708,7 +787,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -722,7 +802,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -735,23 +816,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -764,25 +851,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -798,7 +892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -810,7 +905,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -824,7 +920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -837,15 +934,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -859,7 +960,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -871,7 +973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -883,7 +986,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -899,7 +1003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -913,7 +1018,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -928,7 +1034,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -940,7 +1047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -954,7 +1062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -967,23 +1076,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -996,29 +1111,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1029,7 +1149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1041,7 +1162,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1057,7 +1179,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1071,7 +1194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1086,7 +1210,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1098,7 +1223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1112,7 +1238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1125,23 +1252,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1154,20 +1287,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1178,7 +1317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1190,7 +1330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1206,7 +1347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1220,7 +1362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1235,7 +1378,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1247,7 +1391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1261,7 +1406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1274,23 +1420,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1303,21 +1455,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1328,7 +1485,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1340,7 +1498,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1356,7 +1515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1370,7 +1530,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1385,7 +1546,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1397,7 +1559,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1411,7 +1574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1424,23 +1588,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1453,22 +1623,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1479,7 +1654,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1491,7 +1667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1507,7 +1684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1521,7 +1699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1536,7 +1715,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1548,7 +1728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1562,7 +1743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1575,23 +1757,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1604,21 +1792,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1629,7 +1822,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1641,7 +1835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1657,7 +1852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1671,7 +1867,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1686,7 +1883,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1698,7 +1896,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1712,7 +1911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1725,23 +1925,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1754,21 +1960,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1779,7 +1990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1791,7 +2003,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1807,7 +2020,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1821,7 +2035,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1835,7 +2050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1848,17 +2064,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -1871,20 +2091,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1895,7 +2121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1907,7 +2134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1923,7 +2151,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1937,7 +2166,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1951,7 +2181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1964,17 +2195,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -1987,21 +2222,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2012,7 +2252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2024,7 +2265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2040,7 +2282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2054,7 +2297,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2068,7 +2312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2081,17 +2326,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2104,22 +2353,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2130,7 +2384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2142,7 +2397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2158,7 +2414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2172,7 +2429,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2186,7 +2444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2199,17 +2458,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2222,21 +2485,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2247,7 +2515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2259,7 +2528,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2275,7 +2545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2289,7 +2560,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2303,7 +2575,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2316,17 +2589,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2339,21 +2616,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2364,7 +2646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2376,7 +2659,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2392,7 +2676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2405,11 +2690,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2422,24 +2709,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/akjy.json b/src/lib/runners/akjy.json index 59d28db9e..4df515dfa 100644 --- a/src/lib/runners/akjy.json +++ b/src/lib/runners/akjy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +56,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -70,7 +72,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -96,7 +100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -109,23 +114,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -138,21 +149,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -163,7 +179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -175,7 +192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -191,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -205,7 +224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -220,7 +240,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -232,7 +253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -246,7 +268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -259,23 +282,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -288,21 +317,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -313,7 +347,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -325,7 +360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -341,7 +377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -355,7 +392,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -370,7 +408,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -382,7 +421,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +436,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -409,23 +450,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -438,22 +485,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -464,7 +516,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -476,7 +529,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -492,7 +546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -506,7 +561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -521,7 +577,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -533,7 +590,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -547,7 +605,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -560,23 +619,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -589,21 +654,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -614,7 +684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -626,7 +697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -642,7 +714,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -656,7 +729,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -671,7 +745,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -683,7 +758,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -697,7 +773,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -710,23 +787,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -739,21 +822,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -764,7 +852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -776,7 +865,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -792,7 +882,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -806,7 +897,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -820,7 +912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -833,17 +926,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -856,24 +953,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/aklf.json b/src/lib/runners/aklf.json index 6a8f67a9b..d1436ade3 100644 --- a/src/lib/runners/aklf.json +++ b/src/lib/runners/aklf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "B", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "A", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/akug.json b/src/lib/runners/akug.json index dbc7bb16b..526de6cc2 100644 --- a/src/lib/runners/akug.json +++ b/src/lib/runners/akug.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -96,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -150,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -164,15 +176,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -185,31 +200,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/alca.json b/src/lib/runners/alca.json index 45717a092..21dbf321d 100644 --- a/src/lib/runners/alca.json +++ b/src/lib/runners/alca.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/amjx.json b/src/lib/runners/amjx.json index 8b614cae6..dd4e39130 100644 --- a/src/lib/runners/amjx.json +++ b/src/lib/runners/amjx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -51,7 +51,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -65,11 +66,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -82,11 +85,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -100,22 +105,26 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/amoq.json b/src/lib/runners/amoq.json index d1d317cb8..ab6bdb7b7 100644 --- a/src/lib/runners/amoq.json +++ b/src/lib/runners/amoq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -34,7 +32,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -48,11 +47,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -66,11 +67,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -84,11 +87,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -102,11 +107,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -120,11 +127,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -138,11 +147,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -156,11 +167,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -174,11 +187,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -192,11 +207,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -210,16 +227,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -230,16 +250,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 20 - } + "shorthandNumber": 20, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/ancc.json b/src/lib/runners/ancc.json new file mode 100644 index 000000000..3f0cf2266 --- /dev/null +++ b/src/lib/runners/ancc.json @@ -0,0 +1,254 @@ +{ + "expressionContainers": [ + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 3 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 3 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 + }, + { + "expression": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [], + "funcPriorityAgg": [], + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 + } + ], + "speed": 1, + "hideControls": false, + "explanationsVisibility": "hiddenInitialPausedOnly", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": true, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} diff --git a/src/lib/runners/anzh.json b/src/lib/runners/anzh.json index a83864085..be425b597 100644 --- a/src/lib/runners/anzh.json +++ b/src/lib/runners/anzh.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "B", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -57,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -70,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,11 +107,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -120,11 +126,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -138,17 +146,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -163,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,11 +223,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -224,13 +242,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -244,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,11 +296,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -290,36 +315,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/aone.json b/src/lib/runners/aone.json index 798fa6ff5..7d5fdd4e2 100644 --- a/src/lib/runners/aone.json +++ b/src/lib/runners/aone.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -17,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -55,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -71,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -85,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -99,15 +103,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -120,31 +127,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/aovj.json b/src/lib/runners/aovj.json index 1372df9c7..59d20bdee 100644 --- a/src/lib/runners/aovj.json +++ b/src/lib/runners/aovj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30,16 +29,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -50,16 +52,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 - } + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/apuz.json b/src/lib/runners/apuz.json index b56f569d9..7f624ea40 100644 --- a/src/lib/runners/apuz.json +++ b/src/lib/runners/apuz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,25 +69,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -98,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -127,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -139,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -150,20 +162,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 } ], @@ -171,8 +191,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/auks.json b/src/lib/runners/auks.json index 5cec45864..19d33ffd1 100644 --- a/src/lib/runners/auks.json +++ b/src/lib/runners/auks.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/avcu.json b/src/lib/runners/avcu.json index 9f338caca..7a833b4c0 100644 --- a/src/lib/runners/avcu.json +++ b/src/lib/runners/avcu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -84,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -98,15 +102,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -119,30 +126,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/avsl.json b/src/lib/runners/avsl.json index 052acfb25..12a8fdbd9 100644 --- a/src/lib/runners/avsl.json +++ b/src/lib/runners/avsl.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -49,7 +51,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -63,11 +66,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -80,11 +85,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -98,25 +105,27 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/awbq.json b/src/lib/runners/awbq.json index b809d1a06..8c476c188 100644 --- a/src/lib/runners/awbq.json +++ b/src/lib/runners/awbq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -45,7 +45,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -59,7 +60,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -74,7 +76,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -88,28 +91,34 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/awwn.json b/src/lib/runners/awwn.json index f0ad93106..dc7b0c958 100644 --- a/src/lib/runners/awwn.json +++ b/src/lib/runners/awwn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -96,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -150,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -164,15 +176,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -185,30 +200,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ayok.json b/src/lib/runners/ayok.json index 7da316052..50c911046 100644 --- a/src/lib/runners/ayok.json +++ b/src/lib/runners/ayok.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -41,7 +41,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -52,21 +53,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -77,7 +83,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -91,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -105,7 +113,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -116,21 +125,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -141,7 +155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -155,7 +170,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -169,7 +185,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -180,22 +197,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -206,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -220,7 +243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -234,7 +258,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -245,21 +270,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -270,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -281,18 +312,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ayrl.json b/src/lib/runners/ayrl.json index a8a15ff20..92f95deab 100644 --- a/src/lib/runners/ayrl.json +++ b/src/lib/runners/ayrl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "l", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -56,11 +57,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -73,11 +76,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -90,24 +95,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bdme.json b/src/lib/runners/bdme.json index 72a6e2719..5d2144327 100644 --- a/src/lib/runners/bdme.json +++ b/src/lib/runners/bdme.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/beiz.json b/src/lib/runners/beiz.json index 3cc8cce7d..5e1b43a87 100644 --- a/src/lib/runners/beiz.json +++ b/src/lib/runners/beiz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,24 +69,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "d", @@ -97,7 +105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +136,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -149,25 +161,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -180,7 +198,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -194,7 +213,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -209,7 +229,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -221,7 +242,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -232,25 +254,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -263,7 +291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -277,7 +306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -292,7 +322,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -304,7 +335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -315,26 +347,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -347,7 +385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -361,7 +400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -376,7 +416,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -388,7 +429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -399,25 +441,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -430,7 +478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -444,7 +493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -459,7 +509,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -471,7 +522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -482,25 +534,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -513,7 +571,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -527,7 +586,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -538,14 +598,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -560,7 +627,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -574,7 +642,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -585,17 +654,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -610,7 +683,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -624,7 +698,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -635,17 +710,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -660,7 +739,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -674,7 +754,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -685,18 +766,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -711,7 +796,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -725,7 +811,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -736,21 +823,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "c", "highlightType": "default", @@ -760,16 +849,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bgfl.json b/src/lib/runners/bgfl.json index 4afd5c3b4..faad56caa 100644 --- a/src/lib/runners/bgfl.json +++ b/src/lib/runners/bgfl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bgko.json b/src/lib/runners/bgko.json index 4c16df565..154683116 100644 --- a/src/lib/runners/bgko.json +++ b/src/lib/runners/bgko.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -80,9 +83,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -97,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -108,9 +114,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -125,7 +133,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +146,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -153,7 +163,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -166,11 +177,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -183,15 +196,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -206,38 +223,47 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bgxi.json b/src/lib/runners/bgxi.json index cca894223..1ad5f99e7 100644 --- a/src/lib/runners/bgxi.json +++ b/src/lib/runners/bgxi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bhpw.json b/src/lib/runners/bhpw.json index 9ce7a65e1..ee718c9b1 100644 --- a/src/lib/runners/bhpw.json +++ b/src/lib/runners/bhpw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandFunc", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" - } + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/biit.json b/src/lib/runners/biit.json index 4537bd201..602748a78 100644 --- a/src/lib/runners/biit.json +++ b/src/lib/runners/biit.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandFunc", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" - } + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/blvt.json b/src/lib/runners/blvt.json index 540616e6a..a641a6445 100644 --- a/src/lib/runners/blvt.json +++ b/src/lib/runners/blvt.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "A", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "A", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "B", @@ -102,27 +108,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" - } + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bndi.json b/src/lib/runners/bndi.json index d05350821..001be348d 100644 --- a/src/lib/runners/bndi.json +++ b/src/lib/runners/bndi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" - } + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bnyo.json b/src/lib/runners/bnyo.json index 9976e4331..e24a708c6 100644 --- a/src/lib/runners/bnyo.json +++ b/src/lib/runners/bnyo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -59,11 +60,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -76,11 +79,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -93,15 +98,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -115,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -131,7 +141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -145,7 +156,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -157,7 +169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -169,7 +182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -199,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -213,15 +229,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -234,21 +253,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -263,7 +288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -275,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -291,7 +318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -304,11 +332,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -321,15 +351,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -344,7 +378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -356,7 +391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -367,11 +403,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -386,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -398,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -410,7 +451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -421,13 +463,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -443,38 +489,46 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 15, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bras.json b/src/lib/runners/bras.json index 7458e72d8..baea3a475 100644 --- a/src/lib/runners/bras.json +++ b/src/lib/runners/bras.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -51,7 +51,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -65,11 +66,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -84,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -113,11 +118,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +138,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -143,7 +151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -158,7 +167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -172,7 +182,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -191,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -205,11 +217,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -222,11 +236,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -240,23 +256,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -271,7 +294,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -287,7 +311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -300,11 +325,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -318,7 +345,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -330,7 +358,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -345,7 +374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -359,7 +389,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -378,7 +409,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -392,11 +424,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -409,11 +443,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -427,31 +463,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -465,22 +510,27 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 21 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bwff.json b/src/lib/runners/bwff.json index 8859306eb..e5ec8dd71 100644 --- a/src/lib/runners/bwff.json +++ b/src/lib/runners/bwff.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bwnp.json b/src/lib/runners/bwnp.json index 80fd367d4..9c1dc0941 100644 --- a/src/lib/runners/bwnp.json +++ b/src/lib/runners/bwnp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "repeat", "countVariable": "blankNumber", @@ -18,15 +16,16 @@ "bound": true, "shorthandFunc": "add" } - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/bxuv.json b/src/lib/runners/bxuv.json index 0daf823e5..fc5835efb 100644 --- a/src/lib/runners/bxuv.json +++ b/src/lib/runners/bxuv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "B", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -57,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -70,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,11 +107,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -120,11 +126,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -138,17 +146,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -163,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,11 +223,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -224,13 +242,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -244,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,11 +296,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -290,36 +315,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cbmn.json b/src/lib/runners/cbmn.json index 5d36cf5f5..986836d96 100644 --- a/src/lib/runners/cbmn.json +++ b/src/lib/runners/cbmn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "A", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "F", @@ -63,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -80,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "C", @@ -91,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -108,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "D", @@ -149,11 +159,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "E", @@ -166,15 +178,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "A", @@ -189,35 +205,43 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "type": "function", - "meta": "minusOneEffect" - } + "meta": "minusOneEffect", + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cefx.json b/src/lib/runners/cefx.json index 9683c8653..c10180803 100644 --- a/src/lib/runners/cefx.json +++ b/src/lib/runners/cefx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -72,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -91,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -105,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -122,11 +128,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -140,17 +148,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -165,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -180,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -209,11 +225,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -226,13 +244,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -246,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -262,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,11 +298,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -292,36 +317,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cjxe.json b/src/lib/runners/cjxe.json index 334c86b88..b577c9ffe 100644 --- a/src/lib/runners/cjxe.json +++ b/src/lib/runners/cjxe.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "k", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -56,11 +57,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -73,11 +76,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -90,24 +95,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cldb.json b/src/lib/runners/cldb.json index a4b3f1370..b620db57f 100644 --- a/src/lib/runners/cldb.json +++ b/src/lib/runners/cldb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -63,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -80,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -91,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -108,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -149,11 +159,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -166,15 +178,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -189,34 +205,42 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cmla.json b/src/lib/runners/cmla.json index 742ae77c0..3b36fe884 100644 --- a/src/lib/runners/cmla.json +++ b/src/lib/runners/cmla.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cowm.json b/src/lib/runners/cowm.json index b1e0cef1e..de40dbc3a 100644 --- a/src/lib/runners/cowm.json +++ b/src/lib/runners/cowm.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "m", @@ -54,22 +56,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cpdy.json b/src/lib/runners/cpdy.json index 74723fd47..cb021ad5c 100644 --- a/src/lib/runners/cpdy.json +++ b/src/lib/runners/cpdy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -60,11 +61,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -79,7 +82,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -94,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -117,11 +123,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -136,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -148,7 +158,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -160,7 +171,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -171,13 +183,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -193,38 +209,46 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cpkp.json b/src/lib/runners/cpkp.json index f58e4044a..d655cf84f 100644 --- a/src/lib/runners/cpkp.json +++ b/src/lib/runners/cpkp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "i", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/crvj.json b/src/lib/runners/crvj.json index 86992cd51..8ae94f8be 100644 --- a/src/lib/runners/crvj.json +++ b/src/lib/runners/crvj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -16,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30,7 +29,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -45,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -59,22 +60,26 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/csqj.json b/src/lib/runners/csqj.json index 20b6485f9..50ad7abbe 100644 --- a/src/lib/runners/csqj.json +++ b/src/lib/runners/csqj.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -78,25 +83,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -111,7 +123,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -125,7 +138,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -149,7 +164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -163,7 +179,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -176,25 +193,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -209,7 +233,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -223,7 +248,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -235,7 +261,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -247,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -261,7 +289,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -274,26 +303,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -308,7 +344,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -322,7 +359,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -334,7 +372,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -346,7 +385,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -360,7 +400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -373,29 +414,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -406,7 +452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -418,7 +465,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -432,7 +480,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -445,24 +494,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cuwg.json b/src/lib/runners/cuwg.json index 38d3b3e7b..0eaffdd5e 100644 --- a/src/lib/runners/cuwg.json +++ b/src/lib/runners/cuwg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,16 +64,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -85,7 +91,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -99,7 +106,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -110,13 +118,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -129,17 +140,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -154,7 +168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -168,7 +183,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -179,13 +195,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -198,17 +217,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -223,7 +245,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -237,7 +260,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -248,13 +272,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -267,18 +294,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -293,7 +323,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -307,7 +338,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -318,13 +350,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -337,17 +372,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -360,7 +398,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -373,20 +412,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cvtc.json b/src/lib/runners/cvtc.json index 37bcae74b..b119de059 100644 --- a/src/lib/runners/cvtc.json +++ b/src/lib/runners/cvtc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,28 +69,34 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/cyyp.json b/src/lib/runners/cyyp.json index 113479606..17be88aed 100644 --- a/src/lib/runners/cyyp.json +++ b/src/lib/runners/cyyp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -19,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -59,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -73,11 +74,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -91,11 +94,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -109,11 +114,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -126,11 +133,13 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -144,13 +153,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -164,11 +176,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -182,20 +196,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dcji.json b/src/lib/runners/dcji.json index cb2545403..862b32144 100644 --- a/src/lib/runners/dcji.json +++ b/src/lib/runners/dcji.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -64,22 +66,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -90,16 +98,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 - } + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/ddrg.json b/src/lib/runners/ddrg.json deleted file mode 100644 index 0f4dc120f..000000000 --- a/src/lib/runners/ddrg.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "expressionContainers": [ - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "arg": { - "arg": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 3, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "mult", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "priority": 1 - } - } - ], - "speed": 1, - "hideControls": true, - "explanationsVisibility": "hidden", - "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", - "hidePlayButton": false, - "hideBottomRightBadges": false, - "skipToTheEnd": false, - "hideFuncUnboundBadgeOnExplanation": false, - "highlightOverridesCallArgAndFuncUnboundOnly": false, - "bottomRightBadgeOverrides": {}, - "highlightOverrides": {}, - "highlightOverrideActiveAfterStart": false, - "highlightFunctions": false -} diff --git a/src/lib/runners/deay.json b/src/lib/runners/deay.json index 391930403..1ee9b7b31 100644 --- a/src/lib/runners/deay.json +++ b/src/lib/runners/deay.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -22,7 +20,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -36,11 +35,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -54,11 +55,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -72,11 +75,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -90,20 +95,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dewi.json b/src/lib/runners/dewi.json index 717b2be7c..4b5a6262a 100644 --- a/src/lib/runners/dewi.json +++ b/src/lib/runners/dewi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -17,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -55,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -71,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -85,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -99,15 +103,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -120,30 +127,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dfjp.json b/src/lib/runners/dfjp.json index 04996a415..f37a97845 100644 --- a/src/lib/runners/dfjp.json +++ b/src/lib/runners/dfjp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -28,7 +26,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -42,11 +41,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -60,11 +61,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -78,11 +81,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -96,11 +101,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -114,11 +121,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -132,11 +141,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -150,20 +161,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dgpx.json b/src/lib/runners/dgpx.json index b35f4aba9..44ca175f6 100644 --- a/src/lib/runners/dgpx.json +++ b/src/lib/runners/dgpx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -22,7 +20,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -36,11 +35,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -54,11 +55,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -72,11 +75,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -90,20 +95,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dgyc.json b/src/lib/runners/dgyc.json index 85bcd448e..4c27b9f5c 100644 --- a/src/lib/runners/dgyc.json +++ b/src/lib/runners/dgyc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29,20 +28,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dhiu.json b/src/lib/runners/dhiu.json index 21a548d37..f9ce8dadf 100644 --- a/src/lib/runners/dhiu.json +++ b/src/lib/runners/dhiu.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -53,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -75,7 +82,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -87,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -99,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -164,25 +179,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -198,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -224,7 +248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -237,15 +262,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -259,7 +288,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -271,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -283,7 +314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -313,7 +346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -327,15 +361,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -348,25 +385,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -382,7 +426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -394,7 +439,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -408,7 +454,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -421,15 +468,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -443,7 +494,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -455,7 +507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -467,7 +520,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -483,7 +537,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -497,7 +552,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -511,15 +567,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -532,26 +591,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -567,7 +633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -579,7 +646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -593,7 +661,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -606,15 +675,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -628,7 +701,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -640,7 +714,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -652,7 +727,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -668,7 +744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -682,7 +759,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -697,7 +775,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -709,7 +788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -723,7 +803,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -736,23 +817,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -765,25 +852,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -799,7 +893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -811,7 +906,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -825,7 +921,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -838,15 +935,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -860,7 +961,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -872,7 +974,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -884,7 +987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -900,7 +1004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -914,7 +1019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -929,7 +1035,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -941,7 +1048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -955,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -968,23 +1077,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -997,29 +1112,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1030,7 +1150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1042,7 +1163,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1058,7 +1180,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1072,7 +1195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1087,7 +1211,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1099,7 +1224,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1113,7 +1239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1126,23 +1253,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1155,24 +1288,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dhzf.json b/src/lib/runners/dhzf.json index 8e89d87bb..f413994c2 100644 --- a/src/lib/runners/dhzf.json +++ b/src/lib/runners/dhzf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -41,7 +41,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -52,24 +53,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/diis.json b/src/lib/runners/diis.json index 5592d6940..2da8e36f4 100644 --- a/src/lib/runners/diis.json +++ b/src/lib/runners/diis.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,17 +64,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -86,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -100,7 +107,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -111,13 +119,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -130,18 +141,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -156,7 +170,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -170,7 +185,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -181,13 +197,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -200,17 +219,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -225,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -239,7 +262,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -250,13 +274,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -269,17 +296,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -292,7 +322,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -305,20 +336,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ditw.json b/src/lib/runners/ditw.json index 25743ea81..6f1b37ea3 100644 --- a/src/lib/runners/ditw.json +++ b/src/lib/runners/ditw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29,20 +28,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dkdt.json b/src/lib/runners/dkdt.json index 155075ce6..9cdc6b66d 100644 --- a/src/lib/runners/dkdt.json +++ b/src/lib/runners/dkdt.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -25,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -41,7 +44,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -52,26 +56,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dkiy.json b/src/lib/runners/dkiy.json index 221e35e9e..70fbc7e81 100644 --- a/src/lib/runners/dkiy.json +++ b/src/lib/runners/dkiy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -67,28 +69,34 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dmrz.json b/src/lib/runners/dmrz.json index 36d8bc925..5070fb88b 100644 --- a/src/lib/runners/dmrz.json +++ b/src/lib/runners/dmrz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -56,11 +57,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -73,11 +76,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -90,24 +95,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dogu.json b/src/lib/runners/dogu.json index 3d415c96c..c64b4ba93 100644 --- a/src/lib/runners/dogu.json +++ b/src/lib/runners/dogu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "l", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dpaw.json b/src/lib/runners/dpaw.json index 96858ffb7..ada0b0479 100644 --- a/src/lib/runners/dpaw.json +++ b/src/lib/runners/dpaw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -59,11 +60,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -76,11 +79,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -93,15 +98,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -115,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -131,7 +141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -145,7 +156,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -157,7 +169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -169,7 +182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -199,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -213,15 +229,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -234,21 +253,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -263,7 +288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -275,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -291,7 +318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -304,11 +332,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -321,15 +351,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -344,7 +378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -356,7 +391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -367,11 +403,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -386,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -398,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -410,7 +451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -421,13 +463,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -443,38 +489,46 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 15, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dqdv.json b/src/lib/runners/dqdv.json index 01d94f4c2..dc3fac471 100644 --- a/src/lib/runners/dqdv.json +++ b/src/lib/runners/dqdv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dqey.json b/src/lib/runners/dqey.json index 08ac035de..6104ec517 100644 --- a/src/lib/runners/dqey.json +++ b/src/lib/runners/dqey.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,12 +64,17 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 2 } ], @@ -74,8 +82,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dqwh.json b/src/lib/runners/dqwh.json index e56fa8656..c3082e763 100644 --- a/src/lib/runners/dqwh.json +++ b/src/lib/runners/dqwh.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -43,18 +43,21 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dtzu.json b/src/lib/runners/dtzu.json index 65f866d9b..1b9559fca 100644 --- a/src/lib/runners/dtzu.json +++ b/src/lib/runners/dtzu.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,32 +70,36 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dubm.json b/src/lib/runners/dubm.json index 8a917cc67..f914e451d 100644 --- a/src/lib/runners/dubm.json +++ b/src/lib/runners/dubm.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -45,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -58,11 +59,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -75,11 +78,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -92,11 +97,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -109,24 +116,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/duuk.json b/src/lib/runners/duuk.json index 7f1fb09a6..9a2fc9dd4 100644 --- a/src/lib/runners/duuk.json +++ b/src/lib/runners/duuk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -45,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -58,11 +59,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -75,11 +78,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -92,11 +97,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -109,24 +116,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dvpl.json b/src/lib/runners/dvpl.json index 50d88c0b1..01d3ff928 100644 --- a/src/lib/runners/dvpl.json +++ b/src/lib/runners/dvpl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -102,26 +108,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dwmc.json b/src/lib/runners/dwmc.json index af523a5c0..457d80a81 100644 --- a/src/lib/runners/dwmc.json +++ b/src/lib/runners/dwmc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,11 +33,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -82,11 +85,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -100,7 +105,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +118,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -127,7 +134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -141,7 +149,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -160,7 +169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -174,11 +184,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -191,11 +203,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -209,23 +223,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -240,7 +261,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -256,7 +278,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -269,11 +292,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -287,7 +312,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +325,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -314,7 +341,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -328,7 +356,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -347,7 +376,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -361,11 +391,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -378,11 +410,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -396,31 +430,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -434,16 +477,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -461,7 +508,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -475,11 +523,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -494,7 +544,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -510,7 +561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -523,11 +575,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -541,7 +595,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -553,7 +608,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -568,7 +624,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -582,7 +639,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -601,7 +659,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -615,11 +674,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -632,11 +693,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -650,23 +713,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -681,7 +751,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -697,7 +768,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -710,11 +782,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -728,7 +802,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -740,7 +815,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -755,7 +831,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -769,7 +846,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -788,7 +866,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -802,11 +881,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -819,11 +900,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -837,31 +920,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -875,17 +967,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -903,7 +998,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -917,11 +1013,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -936,7 +1034,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -952,7 +1051,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -965,11 +1065,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -983,7 +1085,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -995,7 +1098,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1010,7 +1114,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1024,7 +1129,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1043,7 +1149,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1057,11 +1164,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1074,11 +1183,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1092,23 +1203,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1123,7 +1241,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1139,7 +1258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1152,11 +1272,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1170,7 +1292,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1182,7 +1305,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1197,7 +1321,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1211,7 +1336,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1230,7 +1356,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1244,11 +1371,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1261,11 +1390,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1279,31 +1410,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "needsAlphaConvert", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1317,17 +1457,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -1345,7 +1488,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1359,11 +1503,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1378,7 +1524,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1394,7 +1541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1407,11 +1555,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1425,7 +1575,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1437,7 +1588,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1452,7 +1604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1466,7 +1619,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1485,7 +1639,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1499,11 +1654,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1516,11 +1673,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1534,23 +1693,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1565,7 +1731,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1581,7 +1748,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1594,11 +1762,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1612,7 +1782,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1624,7 +1795,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1639,7 +1811,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1653,7 +1826,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1672,7 +1846,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1686,11 +1861,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1703,11 +1880,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1721,31 +1900,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1759,17 +1947,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -1787,7 +1978,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1801,11 +1993,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1820,7 +2014,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1836,7 +2031,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1849,11 +2045,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1867,7 +2065,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1879,7 +2078,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1894,7 +2094,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1908,7 +2109,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1927,7 +2129,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1941,11 +2144,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1958,11 +2163,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1976,23 +2183,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2007,7 +2221,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2023,7 +2238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2036,11 +2252,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2054,7 +2272,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2066,7 +2285,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2081,7 +2301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2095,7 +2316,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2114,7 +2336,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2128,11 +2351,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2145,11 +2370,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2163,31 +2390,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2201,18 +2437,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -2230,7 +2469,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2244,11 +2484,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2263,7 +2505,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2279,7 +2522,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2292,11 +2536,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2310,7 +2556,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2322,7 +2569,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2337,7 +2585,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2351,7 +2600,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2370,7 +2620,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2384,11 +2635,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2401,11 +2654,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2419,23 +2674,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2450,7 +2712,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2467,7 +2730,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2483,7 +2747,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2496,11 +2761,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2514,7 +2781,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2526,7 +2794,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2541,7 +2810,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2555,7 +2825,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2574,7 +2845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2588,11 +2860,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2605,11 +2879,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2623,23 +2899,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2653,7 +2936,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2669,7 +2953,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2682,11 +2967,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2700,7 +2987,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2712,7 +3000,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2727,7 +3016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2741,7 +3031,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2760,7 +3051,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2774,11 +3066,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2791,11 +3085,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2809,27 +3105,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2843,7 +3147,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2855,7 +3160,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2870,7 +3176,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2884,7 +3191,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2903,7 +3211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2917,11 +3226,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2934,11 +3245,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2952,31 +3265,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -2990,17 +3312,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 33 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -3018,7 +3343,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3032,11 +3358,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3051,7 +3379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3067,7 +3396,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3080,11 +3410,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3098,7 +3430,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3110,7 +3443,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3125,7 +3459,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3139,7 +3474,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3158,7 +3494,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3172,11 +3509,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3189,11 +3528,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3207,23 +3548,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3238,7 +3586,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3255,7 +3604,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3271,7 +3621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3284,11 +3635,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3302,7 +3655,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3314,7 +3668,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3329,7 +3684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3343,7 +3699,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3362,7 +3719,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3376,11 +3734,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3393,11 +3753,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3411,23 +3773,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3441,7 +3810,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3457,7 +3827,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3470,11 +3841,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3488,7 +3861,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3500,7 +3874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3515,7 +3890,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3529,7 +3905,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3548,7 +3925,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3562,11 +3940,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3579,11 +3959,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3597,27 +3979,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3631,7 +4021,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3643,7 +4034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3658,7 +4050,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3672,7 +4065,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3691,7 +4085,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3705,11 +4100,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3722,11 +4119,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3740,31 +4139,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -3778,17 +4186,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 33 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -3806,7 +4217,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3820,11 +4232,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3841,7 +4255,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3857,7 +4272,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3870,11 +4286,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3888,7 +4306,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3900,7 +4319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3915,7 +4335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3929,7 +4350,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3948,7 +4370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3962,11 +4385,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3979,11 +4404,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3997,23 +4424,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4027,7 +4461,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4043,7 +4478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4056,11 +4492,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4074,7 +4512,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4086,7 +4525,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4101,7 +4541,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4115,7 +4556,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4134,7 +4576,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4148,11 +4591,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4165,11 +4610,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4183,27 +4630,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4218,7 +4673,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4230,7 +4686,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4245,7 +4702,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4259,7 +4717,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4278,7 +4737,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4292,11 +4752,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4309,11 +4771,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4327,25 +4791,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -4359,16 +4830,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -4386,7 +4861,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4400,11 +4876,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4421,7 +4899,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4437,7 +4916,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4450,11 +4930,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4468,7 +4950,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4480,7 +4963,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4495,7 +4979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4509,7 +4994,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4528,7 +5014,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4542,11 +5029,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4559,11 +5048,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4577,23 +5068,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4607,7 +5105,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4623,7 +5122,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4636,11 +5136,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4654,7 +5156,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4666,7 +5169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4681,7 +5185,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4695,7 +5200,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4714,7 +5220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4728,11 +5235,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4745,11 +5254,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4763,27 +5274,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4798,7 +5317,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4810,7 +5330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4825,7 +5346,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4839,7 +5361,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4858,7 +5381,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4872,11 +5396,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4889,11 +5415,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4907,25 +5435,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -4939,17 +5474,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -4967,7 +5505,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4981,11 +5520,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5002,7 +5543,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5018,7 +5560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5031,11 +5574,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5049,7 +5594,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5061,7 +5607,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5076,7 +5623,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5090,7 +5638,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5109,7 +5658,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5123,11 +5673,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5140,11 +5692,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5158,23 +5712,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5188,7 +5749,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5204,7 +5766,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5217,11 +5780,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5235,7 +5800,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5247,7 +5813,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5262,7 +5829,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5276,7 +5844,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5295,7 +5864,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5309,11 +5879,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5326,11 +5898,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5344,27 +5918,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5379,7 +5961,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5391,7 +5974,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5406,7 +5990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5420,7 +6005,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5439,7 +6025,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5453,11 +6040,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5470,11 +6059,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5488,25 +6079,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -5520,18 +6118,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -5549,7 +6150,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5563,11 +6165,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5584,7 +6188,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5600,7 +6205,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5613,11 +6219,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5631,7 +6239,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5643,7 +6252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5658,7 +6268,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5672,7 +6283,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5691,7 +6303,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5705,11 +6318,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5722,11 +6337,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5740,23 +6357,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5770,7 +6394,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5786,7 +6411,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5799,11 +6425,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5817,7 +6445,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5829,7 +6458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5844,7 +6474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5858,7 +6489,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5877,7 +6509,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5891,11 +6524,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5908,11 +6543,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5926,27 +6563,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5961,7 +6606,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5973,7 +6619,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5988,7 +6635,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6002,7 +6650,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6021,7 +6670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6035,11 +6685,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6054,7 +6706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6070,7 +6723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6083,11 +6737,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6101,7 +6757,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6113,7 +6770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6128,7 +6786,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6142,7 +6801,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6161,7 +6821,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6175,11 +6836,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6192,11 +6855,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6210,23 +6875,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6241,7 +6913,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6257,7 +6930,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6270,11 +6944,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6288,7 +6964,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6300,7 +6977,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6315,7 +6993,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6329,7 +7008,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6348,7 +7028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6362,11 +7043,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6379,11 +7062,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6397,31 +7082,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6435,25 +7129,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -6467,17 +7168,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 40 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -6495,7 +7199,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6509,11 +7214,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6530,7 +7237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6546,7 +7254,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6559,11 +7268,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6577,7 +7288,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6589,7 +7301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6604,7 +7317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6618,7 +7332,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6637,7 +7352,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6651,11 +7367,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6668,11 +7386,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6686,23 +7406,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6716,7 +7443,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6732,7 +7460,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6745,11 +7474,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6763,7 +7494,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6775,7 +7507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6790,7 +7523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6804,7 +7538,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6823,7 +7558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6837,11 +7573,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6854,11 +7592,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6872,27 +7612,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6907,7 +7655,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6919,7 +7668,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6934,7 +7684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6948,7 +7699,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6967,7 +7719,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6981,11 +7734,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7000,7 +7755,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7016,7 +7772,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7029,11 +7786,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7047,7 +7806,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7059,7 +7819,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7074,7 +7835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7088,7 +7850,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7107,7 +7870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7121,11 +7885,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7138,11 +7904,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7156,23 +7924,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7187,7 +7962,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7203,7 +7979,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7216,11 +7993,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7234,7 +8013,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7246,7 +8026,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7261,7 +8042,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7275,7 +8057,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7294,7 +8077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7308,11 +8092,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7325,11 +8111,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7343,31 +8131,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7381,25 +8178,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -7413,17 +8217,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 40 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -7441,7 +8248,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7455,11 +8263,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7473,7 +8283,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7488,7 +8299,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7502,7 +8314,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7521,7 +8334,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7535,11 +8349,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7554,7 +8370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7570,7 +8387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7583,11 +8401,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7601,7 +8421,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7613,7 +8434,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7628,7 +8450,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7642,7 +8465,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7661,7 +8485,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7675,11 +8500,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7692,11 +8519,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7710,23 +8539,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7741,7 +8577,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7757,7 +8594,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7770,11 +8608,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7788,7 +8628,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7800,7 +8641,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7815,7 +8657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7829,7 +8672,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7848,7 +8692,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7862,11 +8707,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7879,11 +8726,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7897,31 +8746,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7935,19 +8793,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -7961,16 +8824,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -7988,7 +8855,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8002,11 +8870,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8020,7 +8890,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8035,7 +8906,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8049,7 +8921,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8068,7 +8941,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8082,11 +8956,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8101,7 +8977,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8117,7 +8994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8130,11 +9008,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8148,7 +9028,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8160,7 +9041,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8175,7 +9057,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8189,7 +9072,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8208,7 +9092,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8222,11 +9107,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8239,11 +9126,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8257,23 +9146,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8288,7 +9184,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8304,7 +9201,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8317,11 +9215,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8335,7 +9235,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8347,7 +9248,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8362,7 +9264,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8376,7 +9279,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8395,7 +9299,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8409,11 +9314,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8426,11 +9333,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8444,31 +9353,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -8482,19 +9400,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -8508,17 +9431,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -8536,7 +9462,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8550,11 +9477,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8568,7 +9497,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8583,7 +9513,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8597,7 +9528,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8616,7 +9548,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8630,11 +9563,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8649,7 +9584,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8665,7 +9601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8678,11 +9615,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8696,7 +9635,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8708,7 +9648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8723,7 +9664,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8737,7 +9679,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8756,7 +9699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8770,11 +9714,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8787,11 +9733,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8805,23 +9753,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8836,7 +9791,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8852,7 +9808,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8865,11 +9822,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8883,7 +9842,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8895,7 +9855,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8910,7 +9871,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8924,7 +9886,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8943,7 +9906,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8957,11 +9921,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8974,11 +9940,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8992,31 +9960,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -9030,19 +10007,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -9056,18 +10038,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -9085,7 +10070,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9099,11 +10085,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9117,7 +10105,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9136,7 +10125,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9150,11 +10140,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9168,7 +10160,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9190,7 +10183,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9204,11 +10198,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9222,11 +10218,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9241,7 +10239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9257,7 +10256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9270,11 +10270,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9288,7 +10290,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9300,7 +10303,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9315,7 +10319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9329,7 +10334,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9348,7 +10354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9362,11 +10369,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9379,11 +10388,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9397,23 +10408,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9428,7 +10446,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9444,7 +10463,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9457,11 +10477,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9475,7 +10497,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9487,7 +10510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9502,7 +10526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9516,7 +10541,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9535,7 +10561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9549,11 +10576,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9566,11 +10595,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9584,31 +10615,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -9622,19 +10662,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -9648,17 +10693,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -9676,7 +10724,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9690,11 +10739,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9708,7 +10759,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9727,7 +10779,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9741,11 +10794,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9759,7 +10814,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9781,7 +10837,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9795,11 +10852,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9813,11 +10872,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9832,7 +10893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9848,7 +10910,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9861,11 +10924,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9879,7 +10944,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9891,7 +10957,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9906,7 +10973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9920,7 +10988,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9939,7 +11008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9953,11 +11023,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9970,11 +11042,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9988,23 +11062,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10019,7 +11100,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10035,7 +11117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10048,11 +11131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10066,7 +11151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10078,7 +11164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10093,7 +11180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10107,7 +11195,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10126,7 +11215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10140,11 +11230,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10157,11 +11249,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10175,31 +11269,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -10213,19 +11316,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10239,17 +11347,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -10268,7 +11379,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10282,11 +11394,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10300,7 +11414,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10323,7 +11438,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10337,11 +11453,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10355,11 +11473,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10374,7 +11494,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10390,7 +11511,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10403,11 +11525,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10421,7 +11545,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10433,7 +11558,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10448,7 +11574,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10462,7 +11589,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10481,7 +11609,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10495,11 +11624,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10512,11 +11643,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10530,23 +11663,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10561,7 +11701,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10577,7 +11718,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10590,11 +11732,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10608,7 +11752,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10620,7 +11765,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10635,7 +11781,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10649,7 +11796,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10668,7 +11816,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10682,11 +11831,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10699,11 +11850,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10717,31 +11870,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -10755,13 +11917,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -10775,16 +11940,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "type": "conditional", @@ -10803,7 +11972,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10817,11 +11987,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10835,7 +12007,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10858,7 +12031,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10872,11 +12046,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10890,11 +12066,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10909,7 +12087,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10925,7 +12104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10938,11 +12118,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10956,7 +12138,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10968,7 +12151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10983,7 +12167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10997,7 +12182,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11016,7 +12202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11030,11 +12217,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11047,11 +12236,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11065,23 +12256,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11096,7 +12294,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11112,7 +12311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11125,11 +12325,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11143,7 +12345,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11155,7 +12358,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11170,7 +12374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11184,7 +12389,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11203,7 +12409,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11217,11 +12424,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11234,11 +12443,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11252,31 +12463,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11290,13 +12510,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11310,17 +12533,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -11336,7 +12562,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11350,7 +12577,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11373,7 +12601,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11387,11 +12616,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11405,11 +12636,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11424,7 +12657,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11440,7 +12674,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11453,11 +12688,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11471,7 +12708,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11483,7 +12721,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11498,7 +12737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11512,7 +12752,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11531,7 +12772,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11545,11 +12787,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11562,11 +12806,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11580,23 +12826,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11611,7 +12864,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11627,7 +12881,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11640,11 +12895,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11658,7 +12915,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11670,7 +12928,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11685,7 +12944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11699,7 +12959,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11718,7 +12979,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11732,11 +12994,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11749,11 +13013,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11767,31 +13033,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11805,13 +13080,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11825,20 +13103,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 23 } ], "speed": 1.75, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dwzy.json b/src/lib/runners/dwzy.json index d0a35d4b0..59467866f 100644 --- a/src/lib/runners/dwzy.json +++ b/src/lib/runners/dwzy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -36,20 +36,24 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/dyoq.json b/src/lib/runners/dyoq.json index cb61c6856..2c9178ae2 100644 --- a/src/lib/runners/dyoq.json +++ b/src/lib/runners/dyoq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,26 +179,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -196,16 +216,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/eagi.json b/src/lib/runners/eagi.json index 5eb5bfa60..298b5445a 100644 --- a/src/lib/runners/eagi.json +++ b/src/lib/runners/eagi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,11 +33,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -52,11 +53,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -70,16 +73,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -90,16 +96,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 - } + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/ednv.json b/src/lib/runners/ednv.json index f2fcd66e6..f62f003b8 100644 --- a/src/lib/runners/ednv.json +++ b/src/lib/runners/ednv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,12 +37,14 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -54,16 +55,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 - } + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/edzu.json b/src/lib/runners/edzu.json index 773733bc9..7cac2d4f1 100644 --- a/src/lib/runners/edzu.json +++ b/src/lib/runners/edzu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -49,7 +49,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -62,11 +63,13 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -79,11 +82,13 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -96,11 +101,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -113,11 +120,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -130,11 +139,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -147,24 +158,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ehxq.json b/src/lib/runners/ehxq.json index 21cae8cee..d9c3e3360 100644 --- a/src/lib/runners/ehxq.json +++ b/src/lib/runners/ehxq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -45,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -58,11 +59,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -75,11 +78,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -92,11 +97,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -109,20 +116,25 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -133,16 +145,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 - } + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/rwuw.json b/src/lib/runners/eijx.json similarity index 66% rename from src/lib/runners/rwuw.json rename to src/lib/runners/eijx.json index d3d6a21ff..341b75fec 100644 --- a/src/lib/runners/rwuw.json +++ b/src/lib/runners/eijx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,22 +43,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", "state": "default", "checkType": "isZero", "condition": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -68,14 +93,17 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { - "arg": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { "name": "f", @@ -84,14 +112,15 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, + 2, + 5, 3, - 4, - 5 + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -101,15 +130,17 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 4 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -119,56 +150,43 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "mult", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "type": "call", - "priority": 3 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -183,7 +201,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -198,7 +217,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -214,7 +234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -227,11 +248,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -244,13 +267,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -264,7 +290,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -280,7 +307,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -293,11 +321,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -310,36 +340,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/elku.json b/src/lib/runners/elku.json index 6714b5898..aaf6c3b1e 100644 --- a/src/lib/runners/elku.json +++ b/src/lib/runners/elku.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/elyq.json b/src/lib/runners/elyq.json index fe37e8221..ed19677e7 100644 --- a/src/lib/runners/elyq.json +++ b/src/lib/runners/elyq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "f", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -36,20 +36,24 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/envj.json b/src/lib/runners/envj.json index 28533ac70..502055baf 100644 --- a/src/lib/runners/envj.json +++ b/src/lib/runners/envj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "questionFoodGrey", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -102,26 +108,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/eozk.json b/src/lib/runners/eozk.json index cc0984a4a..02832ba48 100644 --- a/src/lib/runners/eozk.json +++ b/src/lib/runners/eozk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "A", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "Amult", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/epoi.json b/src/lib/runners/epoi.json index c6c9c14a5..6065a9209 100644 --- a/src/lib/runners/epoi.json +++ b/src/lib/runners/epoi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -71,20 +74,25 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -95,16 +103,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/etae.json b/src/lib/runners/etae.json index 7ddf0ec4e..615a0ee55 100644 --- a/src/lib/runners/etae.json +++ b/src/lib/runners/etae.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 } @@ -89,8 +99,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/etku.json b/src/lib/runners/etku.json index 264c157bd..4c31f2627 100644 --- a/src/lib/runners/etku.json +++ b/src/lib/runners/etku.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,16 +37,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/evqx.json b/src/lib/runners/evqx.json index 754cdd396..108901871 100644 --- a/src/lib/runners/evqx.json +++ b/src/lib/runners/evqx.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,18 +40,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -64,7 +70,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +85,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -89,25 +97,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/eweo.json b/src/lib/runners/eweo.json index 988179f1f..7081cbef3 100644 --- a/src/lib/runners/eweo.json +++ b/src/lib/runners/eweo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -84,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -98,15 +102,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -119,30 +126,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ewfr.json b/src/lib/runners/ewfr.json index 00006f77a..63386bf67 100644 --- a/src/lib/runners/ewfr.json +++ b/src/lib/runners/ewfr.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "repeat", "countVariable": "blankNumber", @@ -18,15 +16,16 @@ "bound": true, "shorthandFunc": "pred" } - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/exbn.json b/src/lib/runners/exbn.json index 46065e15d..d10585890 100644 --- a/src/lib/runners/exbn.json +++ b/src/lib/runners/exbn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,22 +179,31 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -197,7 +219,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -223,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -236,15 +261,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -258,7 +287,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -270,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -282,7 +313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -298,7 +330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -312,7 +345,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -326,15 +360,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -347,25 +384,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -381,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -393,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -407,7 +453,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -420,15 +467,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -442,7 +493,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -454,7 +506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -466,7 +519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -482,7 +536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -496,7 +551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -510,15 +566,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -531,26 +590,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -566,7 +632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -578,7 +645,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -592,7 +660,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -605,15 +674,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -627,7 +700,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -639,7 +713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -651,7 +726,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -667,7 +743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -681,7 +758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -696,7 +774,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -708,7 +787,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -722,7 +802,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -735,23 +816,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -764,25 +851,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -798,7 +892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -810,7 +905,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -824,7 +920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -837,15 +934,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -859,7 +960,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -871,7 +973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -883,7 +986,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -899,7 +1003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -913,7 +1018,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -928,7 +1034,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -940,7 +1047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -954,7 +1062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -967,23 +1076,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -996,29 +1111,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1029,7 +1149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1041,7 +1162,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1057,7 +1179,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1071,7 +1194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1086,7 +1210,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1098,7 +1223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1112,7 +1238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1125,23 +1252,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1154,20 +1287,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1178,7 +1317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1190,7 +1330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1206,7 +1347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1220,7 +1362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1235,7 +1378,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1247,7 +1391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1261,7 +1406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1274,23 +1420,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1303,21 +1455,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1328,7 +1485,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1340,7 +1498,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1356,7 +1515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1370,7 +1530,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1385,7 +1546,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1397,7 +1559,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1411,7 +1574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1424,23 +1588,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1453,22 +1623,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1479,7 +1654,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1491,7 +1667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1507,7 +1684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1521,7 +1699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1536,7 +1715,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1548,7 +1728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1562,7 +1743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1575,23 +1757,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1604,21 +1792,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1629,7 +1822,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1641,7 +1835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1657,7 +1852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1671,7 +1867,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1686,7 +1883,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1698,7 +1896,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1712,7 +1911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1725,23 +1925,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1754,21 +1960,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1779,7 +1990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1791,7 +2003,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1807,7 +2020,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1821,7 +2035,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1835,7 +2050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1848,17 +2064,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -1871,20 +2091,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1895,7 +2121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1907,7 +2134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1923,7 +2151,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1937,7 +2166,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1951,7 +2181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1964,17 +2195,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -1987,21 +2222,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2012,7 +2252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2024,7 +2265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2040,7 +2282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2054,7 +2297,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2068,7 +2312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2081,17 +2326,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2104,22 +2353,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2130,7 +2384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2142,7 +2397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2158,7 +2414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2172,7 +2429,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2186,7 +2444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2199,17 +2458,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2222,21 +2485,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2247,7 +2515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2259,7 +2528,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2275,7 +2545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2289,7 +2560,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2303,7 +2575,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2316,17 +2589,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2339,21 +2616,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2364,7 +2646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2376,7 +2659,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2392,7 +2676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2405,11 +2690,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2422,24 +2709,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ezmz.json b/src/lib/runners/ezmz.json index b0b032eaa..20bb3c353 100644 --- a/src/lib/runners/ezmz.json +++ b/src/lib/runners/ezmz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -166,27 +179,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -197,16 +217,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/fclo.json b/src/lib/runners/fclo.json index daa780ccb..42124b368 100644 --- a/src/lib/runners/fclo.json +++ b/src/lib/runners/fclo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,20 +64,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fdig.json b/src/lib/runners/fdig.json index f1f3dc417..24af0c95e 100644 --- a/src/lib/runners/fdig.json +++ b/src/lib/runners/fdig.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30,20 +29,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fhkl.json b/src/lib/runners/fhkl.json index 78efef359..1e28edcf5 100644 --- a/src/lib/runners/fhkl.json +++ b/src/lib/runners/fhkl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -59,11 +60,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -76,11 +79,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -93,15 +98,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -115,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -127,7 +137,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -139,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -154,7 +166,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -165,9 +178,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -182,7 +197,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -193,9 +209,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -210,7 +228,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -222,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -238,7 +258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -251,11 +272,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -268,15 +291,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -291,34 +318,43 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -329,16 +365,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/fhrd.json b/src/lib/runners/fhrd.json index bf75c7bce..bf0d0b2a1 100644 --- a/src/lib/runners/fhrd.json +++ b/src/lib/runners/fhrd.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fkat.json b/src/lib/runners/fkat.json index c5dedc09d..f8fdf459f 100644 --- a/src/lib/runners/fkat.json +++ b/src/lib/runners/fkat.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -18,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -55,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -69,11 +70,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -87,11 +90,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -104,11 +109,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -122,13 +129,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -142,20 +152,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fkqu.json b/src/lib/runners/fkqu.json index 6b5e4b04f..4bdd46b8f 100644 --- a/src/lib/runners/fkqu.json +++ b/src/lib/runners/fkqu.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -49,7 +51,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -63,11 +66,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -80,11 +85,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -98,25 +105,27 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fkvy.json b/src/lib/runners/fkvy.json index d7c1d8803..8d6b16603 100644 --- a/src/lib/runners/fkvy.json +++ b/src/lib/runners/fkvy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,11 +33,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -82,11 +85,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -100,7 +105,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +118,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -127,7 +134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -141,7 +149,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -160,7 +169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -174,11 +184,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -191,11 +203,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -209,23 +223,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -240,7 +261,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -256,7 +278,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -269,11 +292,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -287,7 +312,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +325,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -314,7 +341,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -328,7 +356,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -347,7 +376,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -361,11 +391,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -378,11 +410,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -396,31 +430,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -434,20 +477,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 19 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fljg.json b/src/lib/runners/fljg.json index b5a4a8c0a..1bf201c56 100644 --- a/src/lib/runners/fljg.json +++ b/src/lib/runners/fljg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -166,31 +179,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fogc.json b/src/lib/runners/fogc.json index f58e4044a..d655cf84f 100644 --- a/src/lib/runners/fogc.json +++ b/src/lib/runners/fogc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "i", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fsgq.json b/src/lib/runners/fsgq.json index 846dc4a95..324c5af8f 100644 --- a/src/lib/runners/fsgq.json +++ b/src/lib/runners/fsgq.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -53,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -75,7 +82,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -87,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -99,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -164,25 +179,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -198,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -224,7 +248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -237,15 +262,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -259,7 +288,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -271,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -283,7 +314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -313,7 +346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -327,15 +361,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -348,26 +385,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -383,7 +427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -395,7 +440,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -409,7 +455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -422,15 +469,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -444,7 +495,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -456,7 +508,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -468,7 +521,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -484,7 +538,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -498,7 +553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -513,7 +569,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -525,7 +582,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -539,7 +597,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -552,23 +611,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -581,25 +646,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -615,7 +687,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -627,7 +700,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -641,7 +715,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -654,15 +729,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -676,7 +755,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -688,7 +768,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -700,7 +781,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -716,7 +798,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -730,7 +813,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -745,7 +829,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -757,7 +842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -771,7 +857,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -784,23 +871,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -813,29 +906,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -846,7 +944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -858,7 +957,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -874,7 +974,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -888,7 +989,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -903,7 +1005,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -915,7 +1018,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -929,7 +1033,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -942,23 +1047,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -971,20 +1082,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -995,7 +1112,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1007,7 +1125,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1023,7 +1142,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1037,7 +1157,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1052,7 +1173,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1064,7 +1186,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1078,7 +1201,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1091,23 +1215,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1120,21 +1250,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1145,7 +1280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1157,7 +1293,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1173,7 +1310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1187,7 +1325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1202,7 +1341,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1214,7 +1354,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1228,7 +1369,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1241,23 +1383,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1270,22 +1418,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1296,7 +1449,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1308,7 +1462,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1324,7 +1479,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1338,7 +1494,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1353,7 +1510,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1365,7 +1523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1379,7 +1538,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1392,23 +1552,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1421,21 +1587,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1446,7 +1617,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1458,7 +1630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1474,7 +1647,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1488,7 +1662,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1503,7 +1678,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1515,7 +1691,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1529,7 +1706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1542,23 +1720,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1571,21 +1755,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1596,7 +1785,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1608,7 +1798,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1624,7 +1815,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1638,7 +1830,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1652,7 +1845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1665,17 +1859,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -1688,20 +1886,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1712,7 +1916,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1724,7 +1929,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1740,7 +1946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1754,7 +1961,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1768,7 +1976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1781,17 +1990,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -1804,21 +2017,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1829,7 +2047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1841,7 +2060,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1857,7 +2077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1871,7 +2092,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1885,7 +2107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1898,17 +2121,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -1921,22 +2148,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1947,7 +2179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1959,7 +2192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1975,7 +2209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1989,7 +2224,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2003,7 +2239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2016,17 +2253,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2039,21 +2280,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2064,7 +2310,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2076,7 +2323,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2092,7 +2340,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2106,7 +2355,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2120,7 +2370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2133,17 +2384,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2156,21 +2411,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2181,7 +2441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2193,7 +2454,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2209,7 +2471,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2222,11 +2485,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2239,24 +2504,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fton.json b/src/lib/runners/fton.json index fd0e5f66f..e853a7188 100644 --- a/src/lib/runners/fton.json +++ b/src/lib/runners/fton.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "C", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "blankNumber", @@ -146,32 +158,38 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "condition" + "shorthandNumberAfterConvert": "condition", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fxde.json b/src/lib/runners/fxde.json index 7b8b63837..1988eb356 100644 --- a/src/lib/runners/fxde.json +++ b/src/lib/runners/fxde.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/fxok.json b/src/lib/runners/fxok.json index dab95d4cb..5823ec4a0 100644 --- a/src/lib/runners/fxok.json +++ b/src/lib/runners/fxok.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -40,22 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gemh.json b/src/lib/runners/gemh.json index 0b7dcddd0..b8b537329 100644 --- a/src/lib/runners/gemh.json +++ b/src/lib/runners/gemh.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "B", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ggxl.json b/src/lib/runners/ggxl.json index 1d2e4e174..de5154d78 100644 --- a/src/lib/runners/ggxl.json +++ b/src/lib/runners/ggxl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29,20 +28,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ghwe.json b/src/lib/runners/ghwe.json index 4baa5ca6c..4dcc9cbb0 100644 --- a/src/lib/runners/ghwe.json +++ b/src/lib/runners/ghwe.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -45,7 +45,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -59,7 +60,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -74,7 +76,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -88,28 +91,34 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/glbk.json b/src/lib/runners/glbk.json index e1487f1e8..4766bc98c 100644 --- a/src/lib/runners/glbk.json +++ b/src/lib/runners/glbk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -43,18 +43,21 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gmgs.json b/src/lib/runners/gmgs.json index b3f498b5d..88490e313 100644 --- a/src/lib/runners/gmgs.json +++ b/src/lib/runners/gmgs.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "j", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -45,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -58,11 +59,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -75,11 +78,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -92,11 +97,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -109,24 +116,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gmzn.json b/src/lib/runners/gmzn.json index 0df848c23..c6f0bdec1 100644 --- a/src/lib/runners/gmzn.json +++ b/src/lib/runners/gmzn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -45,7 +45,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -59,7 +60,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -74,7 +76,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -88,20 +91,28 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -117,7 +128,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +143,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -146,7 +159,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -160,7 +174,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -175,7 +190,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -189,23 +205,29 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -221,7 +243,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -235,7 +258,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -250,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -264,7 +289,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -279,7 +305,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -293,24 +320,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -326,7 +359,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -340,7 +374,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -356,7 +391,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -370,7 +406,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -386,7 +423,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -400,23 +438,29 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -432,7 +476,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -446,7 +491,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -462,7 +508,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -476,7 +523,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -492,7 +540,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -506,27 +555,31 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -541,7 +594,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -555,7 +609,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -571,7 +626,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -585,22 +641,27 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gngw.json b/src/lib/runners/gngw.json index 99612c713..c514cabdd 100644 --- a/src/lib/runners/gngw.json +++ b/src/lib/runners/gngw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -63,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -77,11 +78,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -95,11 +98,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -113,11 +118,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -131,11 +138,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -150,7 +159,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -166,7 +176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -179,11 +190,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -197,7 +210,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -224,7 +239,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -238,7 +254,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -257,7 +274,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -271,11 +289,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -288,11 +308,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -306,23 +328,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -337,7 +366,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -353,7 +383,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -366,11 +397,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -384,7 +417,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +430,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -411,7 +446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -425,7 +461,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -444,7 +481,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -458,11 +496,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -475,11 +515,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -493,31 +535,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -531,13 +582,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -551,11 +605,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -569,11 +625,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -587,20 +645,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 27 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gnwm.json b/src/lib/runners/gnwm.json index f7f589faa..e98833c72 100644 --- a/src/lib/runners/gnwm.json +++ b/src/lib/runners/gnwm.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30,20 +29,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gpat.json b/src/lib/runners/gpat.json index 2bab5dde5..265fd6523 100644 --- a/src/lib/runners/gpat.json +++ b/src/lib/runners/gpat.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -146,7 +158,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -158,7 +171,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -172,7 +186,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -185,36 +200,45 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -228,7 +252,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -243,7 +268,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -258,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -270,7 +297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -281,11 +309,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -300,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -312,7 +344,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -324,7 +357,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -335,13 +369,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -358,7 +396,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -370,7 +409,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -384,7 +424,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -397,37 +438,46 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -441,7 +491,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -456,7 +507,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -471,7 +523,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -483,7 +536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -494,11 +548,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -513,7 +570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -525,7 +583,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -537,7 +596,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -548,13 +608,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -571,7 +635,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -583,7 +648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -597,7 +663,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -610,38 +677,47 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -655,7 +731,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -670,7 +747,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -685,7 +763,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -697,7 +776,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -708,11 +788,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -727,7 +810,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -739,7 +823,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -751,7 +836,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -762,13 +848,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -785,7 +875,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -797,7 +888,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -811,7 +903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -825,7 +918,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -837,7 +931,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -849,7 +944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -860,43 +956,55 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -910,7 +1018,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -925,7 +1034,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -940,7 +1050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -952,7 +1063,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -963,11 +1075,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -982,7 +1097,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -994,7 +1110,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1006,7 +1123,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1017,13 +1135,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1040,7 +1162,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1052,7 +1175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1066,7 +1190,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1080,7 +1205,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1092,7 +1218,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1104,7 +1231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1115,43 +1243,55 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -1165,7 +1305,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1180,7 +1321,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1195,7 +1337,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1207,7 +1350,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1218,11 +1362,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1238,7 +1385,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1252,7 +1400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1266,7 +1415,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1278,7 +1428,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1290,7 +1441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1301,36 +1453,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 - } + "priority": 3, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -1344,7 +1507,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1359,7 +1523,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1374,7 +1539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1386,7 +1552,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1397,11 +1564,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1417,7 +1587,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1431,7 +1602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1445,7 +1617,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1457,7 +1630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1469,7 +1643,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1480,37 +1655,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -1524,7 +1709,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1539,7 +1725,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1554,7 +1741,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1566,7 +1754,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1577,11 +1766,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1597,7 +1789,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1611,7 +1804,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1625,7 +1819,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1637,7 +1832,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1649,7 +1845,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1660,38 +1857,48 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -1705,7 +1912,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1720,7 +1928,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1735,7 +1944,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1747,7 +1957,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1758,11 +1969,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1778,7 +1992,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1793,7 +2008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1805,7 +2021,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1816,11 +2033,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1834,7 +2054,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1846,7 +2067,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1858,7 +2080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1869,37 +2092,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -1913,7 +2146,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1928,7 +2162,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1943,7 +2178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1955,7 +2191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1966,11 +2203,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1986,7 +2226,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2001,7 +2242,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2013,7 +2255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2024,11 +2267,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2042,7 +2288,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2054,7 +2301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2066,7 +2314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2077,37 +2326,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -2121,7 +2380,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2136,7 +2396,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2151,7 +2412,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2163,7 +2425,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2174,11 +2437,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2194,7 +2460,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2206,7 +2473,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2218,7 +2486,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2229,30 +2498,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 - } + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -2266,7 +2544,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2281,7 +2560,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2296,7 +2576,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2308,7 +2589,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2319,11 +2601,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2339,7 +2624,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2351,7 +2637,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2363,7 +2650,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2374,31 +2662,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -2412,7 +2708,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2427,7 +2724,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2442,7 +2740,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2454,7 +2753,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2465,11 +2765,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2485,7 +2788,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2497,7 +2801,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2509,7 +2814,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2520,32 +2826,40 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -2559,7 +2873,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2574,7 +2889,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2589,7 +2905,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2601,7 +2918,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2612,11 +2930,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2632,7 +2953,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2644,7 +2966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2656,7 +2979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2667,31 +2991,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -2705,7 +3037,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2720,7 +3053,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2735,7 +3069,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2747,7 +3082,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2758,24 +3094,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -2789,7 +3132,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2804,7 +3148,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2819,7 +3164,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2831,7 +3177,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2842,25 +3189,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -2874,7 +3227,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2889,7 +3243,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2904,7 +3259,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2916,7 +3272,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2927,26 +3284,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -2960,7 +3323,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2975,7 +3339,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2990,7 +3355,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3002,7 +3368,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3013,25 +3380,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -3045,7 +3418,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3059,7 +3433,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3070,14 +3445,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -3093,7 +3475,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3107,7 +3490,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3118,17 +3502,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -3144,7 +3532,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3158,7 +3547,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3169,18 +3559,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -3196,7 +3590,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3210,7 +3605,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -3222,17 +3618,21 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { "expression": { @@ -3248,7 +3648,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3262,7 +3663,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -3274,21 +3676,23 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -3299,16 +3703,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" - } + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/grla.json b/src/lib/runners/grla.json index 1f45fed37..a7f4e9106 100644 --- a/src/lib/runners/grla.json +++ b/src/lib/runners/grla.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,21 +40,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -62,16 +66,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gtdu.json b/src/lib/runners/gtdu.json index 394f8b168..95f0c8905 100644 --- a/src/lib/runners/gtdu.json +++ b/src/lib/runners/gtdu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,20 +64,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/guhy.json b/src/lib/runners/guhy.json index d89a0b4c8..fdd28ac5d 100644 --- a/src/lib/runners/guhy.json +++ b/src/lib/runners/guhy.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -43,21 +45,22 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gvxz.json b/src/lib/runners/gvxz.json index b3d0a2cf0..7ed3e094b 100644 --- a/src/lib/runners/gvxz.json +++ b/src/lib/runners/gvxz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberPlusOrMinusOne": "minus" - } + "shorthandNumberPlusOrMinusOne": "minus", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gwtp.json b/src/lib/runners/gwtp.json index 08c5c3910..9751fca6f 100644 --- a/src/lib/runners/gwtp.json +++ b/src/lib/runners/gwtp.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,18 +40,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -64,7 +70,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +85,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -89,25 +97,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/gzuj.json b/src/lib/runners/gzuj.json new file mode 100644 index 000000000..7c901c7a6 --- /dev/null +++ b/src/lib/runners/gzuj.json @@ -0,0 +1,36 @@ +{ + "expressionContainers": [ + { + "expression": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [], + "funcPriorityAgg": [], + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 + } + ], + "speed": 1, + "hideControls": true, + "explanationsVisibility": "hidden", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": false, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} diff --git a/src/lib/runners/hafp.json b/src/lib/runners/hafp.json index 345ef95d5..ecb541aaa 100644 --- a/src/lib/runners/hafp.json +++ b/src/lib/runners/hafp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -72,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -91,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -105,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -122,11 +128,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -140,17 +148,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -165,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -180,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -209,11 +225,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -226,13 +244,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -246,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -262,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,11 +298,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -292,36 +317,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hbbv.json b/src/lib/runners/hbbv.json index 94f9d6f04..a837dfb4a 100644 --- a/src/lib/runners/hbbv.json +++ b/src/lib/runners/hbbv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -40,22 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hdhy.json b/src/lib/runners/hdhy.json index a59a055d1..5d912fc1d 100644 --- a/src/lib/runners/hdhy.json +++ b/src/lib/runners/hdhy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +56,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -82,17 +85,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -105,21 +112,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -130,7 +142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -142,7 +155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -158,7 +172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -172,7 +187,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -186,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -199,17 +216,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -222,21 +243,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -247,7 +273,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -259,7 +286,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -275,7 +303,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -289,7 +318,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -303,7 +333,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -316,17 +347,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -339,22 +374,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -365,7 +405,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -377,7 +418,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -393,7 +435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -407,7 +450,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -421,7 +465,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -434,17 +479,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -457,21 +506,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -482,7 +536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -494,7 +549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -510,7 +566,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -524,7 +581,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -538,7 +596,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -551,17 +610,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -574,21 +637,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -599,7 +667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -611,7 +680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -627,7 +697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -640,11 +711,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -657,24 +730,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hdxc.json b/src/lib/runners/hdxc.json index 2d811d843..a82de856a 100644 --- a/src/lib/runners/hdxc.json +++ b/src/lib/runners/hdxc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -67,24 +69,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "h", @@ -97,7 +105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +136,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -149,25 +161,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "h", @@ -180,7 +198,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -194,7 +213,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -209,7 +229,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -221,7 +242,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -232,25 +254,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "h", @@ -263,7 +291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -277,7 +306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -292,7 +322,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -304,7 +335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -315,26 +347,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "h", @@ -347,7 +385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -361,7 +400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -376,7 +416,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -388,7 +429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -399,25 +441,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -430,7 +478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -444,7 +493,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -455,14 +505,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -477,7 +534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -491,7 +549,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -502,17 +561,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -527,7 +590,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -541,7 +605,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -552,17 +617,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -577,7 +646,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -591,7 +661,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -602,18 +673,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -628,7 +703,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -642,7 +718,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "h", @@ -653,17 +730,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -678,7 +759,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -692,7 +774,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "h", @@ -703,21 +786,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "h", "highlightType": "default", @@ -727,16 +812,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hehx.json b/src/lib/runners/hehx.json index b1b656346..5b5c302b7 100644 --- a/src/lib/runners/hehx.json +++ b/src/lib/runners/hehx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "A", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "Amult", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hhdu.json b/src/lib/runners/hhdu.json index 51117e94a..db1596267 100644 --- a/src/lib/runners/hhdu.json +++ b/src/lib/runners/hhdu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hhjq.json b/src/lib/runners/hhjq.json index 615b84f06..6fd5195d0 100644 --- a/src/lib/runners/hhjq.json +++ b/src/lib/runners/hhjq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "blankNumber", @@ -146,32 +158,38 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "condition" + "shorthandNumberAfterConvert": "condition", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hluq.json b/src/lib/runners/hluq.json index 93052fa8e..d9a388029 100644 --- a/src/lib/runners/hluq.json +++ b/src/lib/runners/hluq.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -25,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -41,7 +44,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -52,17 +56,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -78,7 +86,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -89,9 +98,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -105,7 +116,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -116,17 +128,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -142,7 +158,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -153,9 +170,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -169,7 +188,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -180,18 +200,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -207,7 +231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -218,9 +243,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -234,7 +261,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -246,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -257,19 +286,24 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -285,7 +319,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -296,9 +331,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -312,7 +349,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -324,7 +362,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -335,23 +374,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -362,7 +404,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -373,18 +416,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hnyn.json b/src/lib/runners/hnyn.json index 3cb52bd35..a9963059c 100644 --- a/src/lib/runners/hnyn.json +++ b/src/lib/runners/hnyn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +56,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -82,17 +85,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -105,21 +112,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -130,7 +142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -142,7 +155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -158,7 +172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -172,7 +187,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -186,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -199,17 +216,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -222,21 +243,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -247,7 +273,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -259,7 +286,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -275,7 +303,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -289,7 +318,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -303,7 +333,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -316,17 +347,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -339,22 +374,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -365,7 +405,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -377,7 +418,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -393,7 +435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -407,7 +450,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -421,7 +465,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -434,17 +479,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -457,21 +506,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -482,7 +536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -494,7 +549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -510,7 +566,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -524,7 +581,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -538,7 +596,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -551,17 +610,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -574,21 +637,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -599,7 +667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -611,7 +680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -627,7 +697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -640,11 +711,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -657,24 +730,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/htir.json b/src/lib/runners/htir.json index 8b9ab299e..20fb115cb 100644 --- a/src/lib/runners/htir.json +++ b/src/lib/runners/htir.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -72,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -91,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -105,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -122,11 +128,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -140,17 +148,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -165,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -180,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -209,11 +225,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -226,13 +244,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -246,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -262,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,11 +298,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -292,32 +317,40 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -328,16 +361,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 - } + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/hvfb.json b/src/lib/runners/hvfb.json index 8c01032f2..687441e61 100644 --- a/src/lib/runners/hvfb.json +++ b/src/lib/runners/hvfb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binaryFirst" + "shorthandNumberAfterConvert": "binaryFirst", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binarySecond" + "shorthandNumberAfterConvert": "binarySecond", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +72,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -126,15 +132,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -148,7 +157,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -162,40 +172,50 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hvqh.json b/src/lib/runners/hvqh.json index c78e322dc..5bc6965a5 100644 --- a/src/lib/runners/hvqh.json +++ b/src/lib/runners/hvqh.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "l", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -24,18 +23,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hvqy.json b/src/lib/runners/hvqy.json index 51230edc2..098df4409 100644 --- a/src/lib/runners/hvqy.json +++ b/src/lib/runners/hvqy.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -38,26 +40,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hykj.json b/src/lib/runners/hykj.json index 3bee1c84b..7130eac5a 100644 --- a/src/lib/runners/hykj.json +++ b/src/lib/runners/hykj.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,23 +70,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -97,7 +107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +122,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +137,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -139,7 +152,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -150,24 +164,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -182,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -196,7 +217,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +232,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -224,7 +247,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -235,23 +259,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -266,7 +296,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -280,7 +311,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -294,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -308,7 +341,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -319,27 +353,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -352,7 +390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -366,7 +405,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -377,14 +417,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -399,7 +446,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -413,7 +461,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -424,17 +473,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -449,7 +502,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -463,7 +517,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -474,17 +529,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -499,7 +558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -513,7 +573,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -524,18 +585,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -550,7 +615,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -564,7 +630,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -575,17 +642,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -600,7 +671,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -614,7 +686,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -625,21 +698,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "a", "highlightType": "default", @@ -649,16 +724,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/iatt.json b/src/lib/runners/iatt.json index e0bb82dab..d633d4119 100644 --- a/src/lib/runners/iatt.json +++ b/src/lib/runners/iatt.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -45,14 +45,17 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -63,16 +66,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - } + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/iczf.json b/src/lib/runners/iczf.json index 3c8c5331d..8846fb6c1 100644 --- a/src/lib/runners/iczf.json +++ b/src/lib/runners/iczf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,11 +33,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -52,11 +53,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -70,20 +73,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ifiq.json b/src/lib/runners/ifiq.json index 39ee7e3b1..35e6fdcc6 100644 --- a/src/lib/runners/ifiq.json +++ b/src/lib/runners/ifiq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -96,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -135,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -146,9 +157,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -163,7 +176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -174,9 +188,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -191,7 +207,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -203,7 +220,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -219,7 +237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -232,11 +251,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -249,15 +270,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -272,30 +297,41 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -311,7 +347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -323,7 +360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -339,7 +377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -352,11 +391,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -369,15 +410,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -391,7 +436,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -403,7 +449,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -415,7 +462,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -430,7 +478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -441,9 +490,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -458,7 +509,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -469,9 +521,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -486,7 +540,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -498,7 +553,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -514,7 +570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -527,11 +584,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -544,15 +603,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -567,33 +630,42 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -609,7 +681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -621,7 +694,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -637,7 +711,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -650,11 +725,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -667,15 +744,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -689,7 +770,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -701,7 +783,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -713,7 +796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -728,7 +812,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -739,9 +824,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -756,7 +843,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -767,9 +855,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -784,7 +874,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -796,7 +887,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -812,7 +904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -825,11 +918,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -842,15 +937,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -865,34 +964,43 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -908,7 +1016,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -920,7 +1029,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -936,7 +1046,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -949,11 +1060,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -966,15 +1079,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -988,7 +1105,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1000,7 +1118,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1012,7 +1131,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1027,7 +1147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1038,9 +1159,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1055,7 +1178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1066,9 +1190,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1083,7 +1209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1095,7 +1222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1111,7 +1239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1124,11 +1253,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1141,15 +1272,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1165,7 +1300,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1177,7 +1313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1193,7 +1330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1206,11 +1344,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1223,41 +1363,53 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -1273,7 +1425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1285,7 +1438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1301,7 +1455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1314,11 +1469,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1331,15 +1488,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1353,7 +1514,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1365,7 +1527,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1377,7 +1540,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1392,7 +1556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1403,9 +1568,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1420,7 +1587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1431,9 +1599,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1448,7 +1618,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1460,7 +1631,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1476,7 +1648,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1489,11 +1662,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1506,15 +1681,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1530,7 +1709,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1542,7 +1722,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1558,7 +1739,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1571,11 +1753,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1588,45 +1772,55 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1637,7 +1831,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1649,7 +1844,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1664,7 +1860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1675,9 +1872,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1692,7 +1891,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1703,9 +1903,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1720,7 +1922,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1732,7 +1935,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1748,7 +1952,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1761,11 +1966,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1778,15 +1985,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1802,7 +2013,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1814,7 +2026,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1830,7 +2043,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1843,11 +2057,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1860,36 +2076,47 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1900,7 +2127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1912,7 +2140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1927,7 +2156,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1938,9 +2168,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1955,7 +2187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1966,9 +2199,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1983,7 +2218,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1995,7 +2231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2011,7 +2248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2024,11 +2262,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2041,15 +2281,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2065,7 +2309,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2077,7 +2322,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2093,7 +2339,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2106,11 +2353,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2123,37 +2372,47 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2164,7 +2423,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2176,7 +2436,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2191,7 +2452,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2202,9 +2464,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2219,7 +2483,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2230,9 +2495,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2247,7 +2514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2259,7 +2527,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2275,7 +2544,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2288,11 +2558,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2305,15 +2577,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2329,7 +2605,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2341,7 +2618,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2357,7 +2635,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2370,11 +2649,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2387,38 +2668,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2429,7 +2720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2441,7 +2733,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2456,7 +2749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2467,9 +2761,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2484,7 +2780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2495,9 +2792,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2512,7 +2811,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2524,7 +2824,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2540,7 +2841,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2553,11 +2855,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2570,15 +2874,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2594,7 +2902,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2606,7 +2915,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2622,7 +2932,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2636,7 +2947,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2648,7 +2960,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2664,7 +2977,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2677,11 +2991,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2694,19 +3010,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2720,7 +3041,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2732,7 +3054,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2748,7 +3071,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2761,11 +3085,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2778,45 +3104,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2827,7 +3166,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2839,7 +3179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2854,7 +3195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2865,9 +3207,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2882,7 +3226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2893,9 +3238,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2910,7 +3257,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2922,7 +3270,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2938,7 +3287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2951,11 +3301,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2968,15 +3320,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2992,7 +3348,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3004,7 +3361,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3020,7 +3378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3034,7 +3393,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3046,7 +3406,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3062,7 +3423,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3075,11 +3437,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3092,19 +3456,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3118,7 +3487,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3130,7 +3500,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3146,7 +3517,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3159,11 +3531,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3176,45 +3550,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -3225,7 +3612,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3237,7 +3625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3252,7 +3641,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3263,9 +3653,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3280,7 +3672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3291,9 +3684,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3308,7 +3703,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3324,7 +3720,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3338,7 +3735,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3350,7 +3748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3366,7 +3765,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3379,11 +3779,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3396,19 +3798,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3422,7 +3829,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3434,7 +3842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3450,7 +3859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3463,11 +3873,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3480,38 +3892,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 5 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -3522,7 +3946,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3534,7 +3959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3549,7 +3975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3560,9 +3987,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3577,7 +4006,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3588,9 +4018,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3605,7 +4037,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3621,7 +4054,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3635,7 +4069,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3647,7 +4082,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3663,7 +4099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3676,11 +4113,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3693,19 +4132,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3719,7 +4163,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3731,7 +4176,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3747,7 +4193,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3760,11 +4207,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3777,39 +4226,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -3820,7 +4280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3832,7 +4293,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3847,7 +4309,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3858,9 +4321,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3875,7 +4340,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3886,9 +4352,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3903,7 +4371,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3919,7 +4388,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3933,7 +4403,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3945,7 +4416,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3961,7 +4433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3974,11 +4447,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3991,19 +4466,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4017,7 +4497,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4029,7 +4510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4045,7 +4527,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4058,11 +4541,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4075,40 +4560,51 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -4119,7 +4615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4131,7 +4628,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4146,7 +4644,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4157,9 +4656,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4174,7 +4675,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4185,9 +4687,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4202,7 +4706,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4219,7 +4724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4230,9 +4736,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4246,7 +4754,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4258,7 +4767,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4274,7 +4784,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4287,11 +4798,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4304,19 +4817,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4330,7 +4848,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4342,7 +4861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4358,7 +4878,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4371,11 +4892,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4388,39 +4911,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -4431,7 +4965,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4443,7 +4978,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4458,7 +4994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4469,9 +5006,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4486,7 +5025,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4497,9 +5037,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4514,7 +5056,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4531,7 +5074,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4542,9 +5086,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4558,7 +5104,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4570,7 +5117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4586,7 +5134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4599,11 +5148,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4616,19 +5167,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4642,7 +5198,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4654,7 +5211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4670,7 +5228,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4683,11 +5242,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4700,39 +5261,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -4743,7 +5315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4755,7 +5328,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4770,7 +5344,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4781,9 +5356,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4800,7 +5377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4811,9 +5389,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4827,7 +5407,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4839,7 +5420,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4855,7 +5437,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4868,11 +5451,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4885,19 +5470,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4912,7 +5502,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4924,7 +5515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4940,7 +5532,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4953,11 +5546,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4970,32 +5565,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -5006,7 +5611,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5018,7 +5624,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5033,7 +5640,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5044,9 +5652,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5063,7 +5673,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5074,9 +5685,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5090,7 +5703,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5102,7 +5716,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5118,7 +5733,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5131,11 +5747,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5148,19 +5766,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5175,7 +5798,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5187,7 +5811,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5203,7 +5828,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5216,11 +5842,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5233,33 +5861,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "b", @@ -5270,7 +5907,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5282,7 +5920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5297,7 +5936,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5308,9 +5948,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5327,7 +5969,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5338,9 +5981,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5354,7 +5999,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5366,7 +6012,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5382,7 +6029,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5395,11 +6043,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5412,19 +6062,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5439,7 +6094,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5451,7 +6107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5467,7 +6124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5480,11 +6138,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5497,33 +6157,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "b", @@ -5534,7 +6203,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5546,7 +6216,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5561,7 +6232,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5572,9 +6244,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5591,7 +6265,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5602,9 +6277,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5618,7 +6295,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5630,7 +6308,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5646,7 +6325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5659,11 +6339,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5676,19 +6358,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5703,7 +6390,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5715,7 +6403,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5731,7 +6420,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5744,11 +6434,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5761,33 +6453,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -5798,7 +6499,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5810,7 +6512,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5825,7 +6528,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5836,9 +6540,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5855,7 +6561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5866,9 +6573,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5882,7 +6591,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5894,7 +6604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5910,7 +6621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5923,11 +6635,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5940,19 +6654,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5967,7 +6686,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5979,7 +6699,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5995,7 +6716,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6008,11 +6730,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6025,34 +6749,43 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -6063,7 +6796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6075,7 +6809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6090,7 +6825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -6101,9 +6837,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6120,7 +6858,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6131,9 +6870,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6147,7 +6888,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6159,7 +6901,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6175,7 +6918,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6188,11 +6932,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6205,19 +6951,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6232,7 +6983,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6244,7 +6996,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6260,7 +7013,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6275,7 +7029,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6286,9 +7041,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6303,7 +7060,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6315,7 +7073,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6331,7 +7090,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6344,11 +7104,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6361,23 +7123,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "e", @@ -6390,33 +7158,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -6427,7 +7204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6439,7 +7217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6454,7 +7233,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -6465,9 +7245,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6484,7 +7266,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6495,9 +7278,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6511,7 +7296,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6523,7 +7309,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6539,7 +7326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6552,11 +7340,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6569,19 +7359,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6596,7 +7391,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6608,7 +7404,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6624,7 +7421,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6639,7 +7437,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6650,9 +7449,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6667,7 +7468,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6679,7 +7481,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6695,7 +7498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6708,11 +7512,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6725,23 +7531,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "e", @@ -6754,33 +7566,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -6791,7 +7612,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6803,7 +7625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6818,7 +7641,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -6829,9 +7653,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6845,7 +7671,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6861,7 +7688,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6876,7 +7704,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6887,9 +7716,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6904,7 +7735,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6916,7 +7748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6932,7 +7765,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6945,11 +7779,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6962,23 +7798,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "e", @@ -6991,26 +7833,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 5 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -7021,7 +7871,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7033,7 +7884,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7048,7 +7900,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -7059,9 +7912,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7075,7 +7930,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7091,7 +7947,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7106,7 +7963,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7117,9 +7975,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7134,7 +7994,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7146,7 +8007,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7162,7 +8024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7175,11 +8038,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7192,23 +8057,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "e", @@ -7221,27 +8092,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "b", @@ -7252,7 +8130,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7264,7 +8143,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7279,7 +8159,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -7290,9 +8171,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7306,7 +8189,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7322,7 +8206,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7337,7 +8222,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7348,9 +8234,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7365,7 +8253,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7377,7 +8266,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7393,7 +8283,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7406,11 +8297,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7423,23 +8316,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "e", @@ -7452,27 +8351,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "b", @@ -7483,7 +8389,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7495,7 +8402,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7510,7 +8418,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -7521,9 +8430,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7537,7 +8448,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7553,7 +8465,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7568,7 +8481,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7579,9 +8493,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7596,7 +8512,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7608,7 +8525,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7624,7 +8542,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7637,11 +8556,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7654,23 +8575,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "e", @@ -7683,27 +8610,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -7714,7 +8648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7726,7 +8661,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7741,7 +8677,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -7752,9 +8689,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7768,7 +8707,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7784,7 +8724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7799,7 +8740,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7810,9 +8752,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7827,7 +8771,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7839,7 +8784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7855,7 +8801,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7868,11 +8815,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7885,23 +8834,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "e", @@ -7914,28 +8869,35 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -7946,7 +8908,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7958,7 +8921,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7973,7 +8937,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -7984,9 +8949,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8000,7 +8967,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8016,7 +8984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8031,7 +9000,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8042,9 +9012,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8059,7 +9031,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8071,7 +9044,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8087,7 +9061,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8100,11 +9075,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8117,23 +9094,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8147,7 +9130,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8158,29 +9142,37 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -8191,7 +9183,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8203,7 +9196,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8218,7 +9212,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8229,9 +9224,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8245,7 +9242,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8261,7 +9259,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8276,7 +9275,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8287,9 +9287,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8304,7 +9306,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8316,7 +9319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8332,7 +9336,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8345,11 +9350,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8362,23 +9369,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8392,7 +9405,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8403,29 +9417,37 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -8436,7 +9458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8448,7 +9471,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8464,7 +9488,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8479,7 +9504,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8490,9 +9516,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8507,7 +9535,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8519,7 +9548,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8535,7 +9565,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8548,11 +9579,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8565,23 +9598,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8595,7 +9634,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8606,22 +9646,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -8632,7 +9679,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8644,7 +9692,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8660,7 +9709,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8675,7 +9725,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8686,9 +9737,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8703,7 +9756,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8715,7 +9769,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8731,7 +9786,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8744,11 +9800,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8761,23 +9819,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8791,7 +9855,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8802,23 +9867,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -8829,7 +9900,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8841,7 +9913,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8857,7 +9930,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8872,7 +9946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8883,9 +9958,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8900,7 +9977,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8912,7 +9990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8928,7 +10007,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8941,11 +10021,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8958,23 +10040,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8988,7 +10076,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8999,24 +10088,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -9027,7 +10122,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9039,7 +10135,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9055,7 +10152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9070,7 +10168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9081,9 +10180,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9098,7 +10199,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9110,7 +10212,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9126,7 +10229,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9139,11 +10243,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9156,23 +10262,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9186,7 +10298,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9200,7 +10313,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9215,7 +10329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9226,9 +10341,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9243,7 +10360,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9255,7 +10373,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9271,7 +10390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9284,11 +10404,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9301,39 +10423,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -9344,7 +10477,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9356,7 +10490,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9372,7 +10507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9387,7 +10523,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9398,9 +10535,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9415,7 +10554,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9427,7 +10567,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9443,7 +10584,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9456,11 +10598,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9473,23 +10617,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9503,7 +10653,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9517,7 +10668,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9532,7 +10684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9543,9 +10696,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9560,7 +10715,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9572,7 +10728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9588,7 +10745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9601,11 +10759,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9618,39 +10778,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -9661,7 +10832,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9673,7 +10845,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9687,7 +10860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9702,7 +10876,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9713,9 +10888,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9730,7 +10907,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9742,7 +10920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9758,7 +10937,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9771,11 +10951,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9788,32 +10970,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -9824,7 +11016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9836,7 +11029,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9850,7 +11044,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9865,7 +11060,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9876,9 +11072,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9893,7 +11091,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9905,7 +11104,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9921,7 +11121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9934,11 +11135,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9951,33 +11154,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -9988,7 +11200,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10000,7 +11213,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10014,7 +11228,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10029,7 +11244,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10040,9 +11256,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -10057,7 +11275,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10069,7 +11288,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10085,7 +11305,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -10098,11 +11319,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10115,34 +11338,43 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -10153,7 +11385,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10165,7 +11398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10179,7 +11413,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10194,7 +11429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10205,9 +11441,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -10222,7 +11460,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10234,7 +11473,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10250,7 +11490,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10264,7 +11505,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10275,13 +11517,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "a", @@ -10294,33 +11539,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -10331,7 +11585,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10343,7 +11598,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10357,7 +11613,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10372,7 +11629,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10383,9 +11641,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -10400,7 +11660,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10412,7 +11673,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10428,7 +11690,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10442,7 +11705,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10453,13 +11717,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "a", @@ -10472,33 +11739,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -10509,7 +11785,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10521,7 +11798,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10535,7 +11813,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10549,7 +11828,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10565,7 +11845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10579,7 +11860,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10590,13 +11872,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "a", @@ -10609,26 +11894,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -10639,7 +11932,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10651,7 +11945,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10665,7 +11960,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10679,7 +11975,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10695,7 +11992,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10709,7 +12007,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10720,13 +12019,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "a", @@ -10739,27 +12041,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -10770,7 +12079,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10782,7 +12092,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10796,7 +12107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10810,7 +12122,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10826,7 +12139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10840,7 +12154,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10851,13 +12166,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "a", @@ -10870,28 +12188,35 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -10902,7 +12227,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10914,7 +12240,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10928,7 +12255,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10942,7 +12270,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10958,7 +12287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10972,7 +12302,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10983,13 +12314,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -11002,27 +12336,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -11033,7 +12374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11045,7 +12387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11059,7 +12402,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11073,7 +12417,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11089,7 +12434,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11103,7 +12449,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11114,13 +12461,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -11133,27 +12483,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -11164,7 +12521,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11176,7 +12534,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11192,7 +12551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11206,7 +12566,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11217,13 +12578,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -11236,20 +12600,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -11260,7 +12630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11272,7 +12643,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11288,7 +12660,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11302,7 +12675,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11313,13 +12687,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -11332,21 +12709,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -11357,7 +12739,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11369,7 +12752,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11385,7 +12769,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11399,7 +12784,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11410,13 +12796,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -11429,22 +12818,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -11455,7 +12849,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11467,7 +12862,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11483,7 +12879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11497,7 +12894,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11508,13 +12906,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -11527,21 +12928,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -11552,7 +12958,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11564,7 +12971,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11578,7 +12986,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11591,24 +13000,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1.75, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ifpo.json b/src/lib/runners/ifpo.json index cd4b9f19c..940f9fa8d 100644 --- a/src/lib/runners/ifpo.json +++ b/src/lib/runners/ifpo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "bentoBox", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "mathBox", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/igpn.json b/src/lib/runners/igpn.json index 3abfaac97..afe72eca7 100644 --- a/src/lib/runners/igpn.json +++ b/src/lib/runners/igpn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/igrl.json b/src/lib/runners/igrl.json index 061bf0998..922b24825 100644 --- a/src/lib/runners/igrl.json +++ b/src/lib/runners/igrl.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,31 +70,35 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showCallArg", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "showCallArg", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ilpo.json b/src/lib/runners/ilpo.json index d19c969b0..09b053052 100644 --- a/src/lib/runners/ilpo.json +++ b/src/lib/runners/ilpo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ilvq.json b/src/lib/runners/ilvq.json index ac7ed3536..ea0d367d3 100644 --- a/src/lib/runners/ilvq.json +++ b/src/lib/runners/ilvq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "f", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/immq.json b/src/lib/runners/immq.json index ee67d4e50..4bf86d898 100644 --- a/src/lib/runners/immq.json +++ b/src/lib/runners/immq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -54,22 +56,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/imyd.json b/src/lib/runners/imyd.json index d66265f57..cc9af9277 100644 --- a/src/lib/runners/imyd.json +++ b/src/lib/runners/imyd.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/issq.json b/src/lib/runners/issq.json index d37cf761e..6efb91e0c 100644 --- a/src/lib/runners/issq.json +++ b/src/lib/runners/issq.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -25,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -41,7 +44,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -64,27 +69,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/itbm.json b/src/lib/runners/itbm.json index 36ce0cde6..550463d42 100644 --- a/src/lib/runners/itbm.json +++ b/src/lib/runners/itbm.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,18 +40,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "b", "highlightType": "default", @@ -61,16 +65,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/ivol.json b/src/lib/runners/ivol.json index 5f9ee79e3..fb20d52ed 100644 --- a/src/lib/runners/ivol.json +++ b/src/lib/runners/ivol.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/iwmu.json b/src/lib/runners/iwmu.json index 04e0faa40..5df3a6f52 100644 --- a/src/lib/runners/iwmu.json +++ b/src/lib/runners/iwmu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 - } + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/izgz.json b/src/lib/runners/izgz.json index 2142a8a68..5e994c560 100644 --- a/src/lib/runners/izgz.json +++ b/src/lib/runners/izgz.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,23 +70,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -97,7 +107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +122,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +137,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -139,7 +152,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -150,27 +164,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -183,7 +201,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -197,7 +216,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -208,14 +228,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -230,7 +257,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -244,7 +272,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -255,17 +284,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -280,7 +313,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -294,7 +328,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -305,17 +340,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -330,7 +369,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -344,7 +384,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -355,18 +396,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -381,7 +426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -395,7 +441,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -406,17 +453,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -431,7 +482,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -445,7 +497,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -456,21 +509,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "a", "highlightType": "default", @@ -480,16 +535,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jaqs.json b/src/lib/runners/jaqs.json index 3578c5045..aef328ccf 100644 --- a/src/lib/runners/jaqs.json +++ b/src/lib/runners/jaqs.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "A", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -37,16 +36,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jarm.json b/src/lib/runners/jarm.json index 5e042e8b7..3772cc853 100644 --- a/src/lib/runners/jarm.json +++ b/src/lib/runners/jarm.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -36,20 +36,24 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jbam.json b/src/lib/runners/jbam.json index 4f6a48046..77b56d5ce 100644 --- a/src/lib/runners/jbam.json +++ b/src/lib/runners/jbam.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,17 +40,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -63,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -88,17 +96,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -113,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -127,7 +140,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -138,18 +152,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -164,7 +182,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -178,7 +197,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -189,21 +209,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -213,16 +235,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jbqw.json b/src/lib/runners/jbqw.json index 24b14ef2e..e2cfc5763 100644 --- a/src/lib/runners/jbqw.json +++ b/src/lib/runners/jbqw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -17,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -33,7 +32,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -48,7 +48,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -60,7 +61,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -71,11 +73,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -90,7 +95,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -102,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -114,7 +121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -125,13 +133,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandNumber", @@ -149,32 +161,38 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 0, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jehv.json b/src/lib/runners/jehv.json index fb7e8fc4c..1805e83f9 100644 --- a/src/lib/runners/jehv.json +++ b/src/lib/runners/jehv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,12 +37,14 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -54,16 +55,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 20 - } + "shorthandNumber": 20, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/jguj.json b/src/lib/runners/jguj.json index cf4741434..646320cb1 100644 --- a/src/lib/runners/jguj.json +++ b/src/lib/runners/jguj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "questionFoodGrey", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -102,27 +108,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" - } + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jiqb.json b/src/lib/runners/jiqb.json index 0b4fdf51d..53f75d062 100644 --- a/src/lib/runners/jiqb.json +++ b/src/lib/runners/jiqb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -18,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,11 +31,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -50,16 +51,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -70,16 +74,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 - } + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/jiua.json b/src/lib/runners/jiua.json index 96610edb6..898a35947 100644 --- a/src/lib/runners/jiua.json +++ b/src/lib/runners/jiua.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -17,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -55,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -71,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -85,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -99,15 +103,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -120,31 +127,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jjet.json b/src/lib/runners/jjet.json index 210f59166..255de7c8e 100644 --- a/src/lib/runners/jjet.json +++ b/src/lib/runners/jjet.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -19,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -59,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -73,11 +74,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -91,11 +94,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -109,11 +114,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -128,7 +135,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -144,7 +152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -157,11 +166,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -175,7 +186,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -187,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -202,7 +215,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -216,7 +230,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -235,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -249,11 +265,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -266,11 +284,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -284,23 +304,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -315,7 +342,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -331,7 +359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -344,11 +373,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -362,7 +393,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -374,7 +406,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -389,7 +422,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -403,7 +437,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -422,7 +457,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -436,11 +472,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -453,11 +491,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -471,31 +511,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -509,13 +558,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -529,11 +581,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -547,20 +601,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 25 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jjjh.json b/src/lib/runners/jjjh.json index ed95550ab..8d598d198 100644 --- a/src/lib/runners/jjjh.json +++ b/src/lib/runners/jjjh.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -36,16 +36,20 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -56,16 +60,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 - } + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/jmmp.json b/src/lib/runners/jmmp.json index a0587e1a0..3955327d8 100644 --- a/src/lib/runners/jmmp.json +++ b/src/lib/runners/jmmp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,20 +64,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/joaq.json b/src/lib/runners/joaq.json index d4fa20ed8..cd35ba0c2 100644 --- a/src/lib/runners/joaq.json +++ b/src/lib/runners/joaq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jsvg.json b/src/lib/runners/jsvg.json index 0297fa338..f2e3e26ee 100644 --- a/src/lib/runners/jsvg.json +++ b/src/lib/runners/jsvg.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -53,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -75,7 +82,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -87,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -99,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -164,25 +179,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -198,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -224,7 +248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -237,15 +262,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -259,7 +288,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -271,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -283,7 +314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -313,7 +346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -327,15 +361,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -348,25 +385,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -382,7 +426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -394,7 +439,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -408,7 +454,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -421,15 +468,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -443,7 +494,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -455,7 +507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -467,7 +520,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -483,7 +537,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -497,7 +552,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -511,15 +567,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -532,26 +591,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -567,7 +633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -579,7 +646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -593,7 +661,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -606,15 +675,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -628,7 +701,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -640,7 +714,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -652,7 +727,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -668,7 +744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -682,7 +759,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -697,7 +775,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -709,7 +788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -723,7 +803,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -736,23 +817,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -765,25 +852,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -799,7 +893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -811,7 +906,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -825,7 +921,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -838,15 +935,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -860,7 +961,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -872,7 +974,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -884,7 +987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -900,7 +1004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -914,7 +1019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -929,7 +1035,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -941,7 +1048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -955,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -968,23 +1077,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -997,29 +1112,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1030,7 +1150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1042,7 +1163,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1058,7 +1180,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1072,7 +1195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1087,7 +1211,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1099,7 +1224,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1113,7 +1239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1126,23 +1253,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1155,24 +1288,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jwah.json b/src/lib/runners/jwah.json index 16366a707..bfcfa72c4 100644 --- a/src/lib/runners/jwah.json +++ b/src/lib/runners/jwah.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 - } + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jwce.json b/src/lib/runners/jwce.json index 39fabe38a..f77fed412 100644 --- a/src/lib/runners/jwce.json +++ b/src/lib/runners/jwce.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,11 +33,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -52,11 +53,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -70,20 +73,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jwdn.json b/src/lib/runners/jwdn.json index ec2dea58a..7dd99122b 100644 --- a/src/lib/runners/jwdn.json +++ b/src/lib/runners/jwdn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 } ], @@ -88,8 +98,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jwue.json b/src/lib/runners/jwue.json index 147f0ed40..a837dfb4a 100644 --- a/src/lib/runners/jwue.json +++ b/src/lib/runners/jwue.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -40,22 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jwzh.json b/src/lib/runners/jwzh.json index bcb2d8a2f..414d15024 100644 --- a/src/lib/runners/jwzh.json +++ b/src/lib/runners/jwzh.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,26 +40,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jxvy.json b/src/lib/runners/jxvy.json index 8efe708f6..1be15d6d2 100644 --- a/src/lib/runners/jxvy.json +++ b/src/lib/runners/jxvy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberPlusOrMinusOne": "plus" - } + "shorthandNumberPlusOrMinusOne": "plus", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jyqf.json b/src/lib/runners/jyqf.json index e05b286ee..9ca175ba9 100644 --- a/src/lib/runners/jyqf.json +++ b/src/lib/runners/jyqf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "k", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kbnn.json b/src/lib/runners/kbnn.json index b995f1e02..e7f6c39c2 100644 --- a/src/lib/runners/kbnn.json +++ b/src/lib/runners/kbnn.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -38,21 +40,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "b", "highlightType": "default", @@ -62,16 +66,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kdgv.json b/src/lib/runners/kdgv.json index 08468f882..2de8644ac 100644 --- a/src/lib/runners/kdgv.json +++ b/src/lib/runners/kdgv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -63,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -77,11 +78,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -95,11 +98,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -113,11 +118,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -131,11 +138,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -148,11 +157,13 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -166,13 +177,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -186,11 +200,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -204,11 +220,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -222,20 +240,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/keck.json b/src/lib/runners/keck.json index b8de99c6c..905145ca8 100644 --- a/src/lib/runners/keck.json +++ b/src/lib/runners/keck.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,26 +40,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kiiq.json b/src/lib/runners/kiiq.json index e43ca51f6..ec7924b4a 100644 --- a/src/lib/runners/kiiq.json +++ b/src/lib/runners/kiiq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" - } + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kizi.json b/src/lib/runners/kizi.json index e8859f47f..4745730c1 100644 --- a/src/lib/runners/kizi.json +++ b/src/lib/runners/kizi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 - } + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kjba.json b/src/lib/runners/kjba.json index d7d8e0628..b7352604d 100644 --- a/src/lib/runners/kjba.json +++ b/src/lib/runners/kjba.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -72,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -91,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -105,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -122,11 +128,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -140,17 +148,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -165,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -180,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -209,11 +225,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -226,13 +244,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -246,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -262,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,11 +298,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -292,36 +317,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kmgw.json b/src/lib/runners/kmgw.json new file mode 100644 index 000000000..f80ee223e --- /dev/null +++ b/src/lib/runners/kmgw.json @@ -0,0 +1,389 @@ +{ + "expressionContainers": [ + { + "expression": { + "arg": { + "name": "blankNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" + } + ], + "speed": 1, + "hideControls": true, + "explanationsVisibility": "hidden", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": false, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} diff --git a/src/lib/runners/kmyl.json b/src/lib/runners/kmyl.json index 265abe37a..db93bc50a 100644 --- a/src/lib/runners/kmyl.json +++ b/src/lib/runners/kmyl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -45,14 +45,17 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -63,16 +66,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 - } + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/knhw.json b/src/lib/runners/knhw.json index f1d25f484..350cbc3c0 100644 --- a/src/lib/runners/knhw.json +++ b/src/lib/runners/knhw.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kosw.json b/src/lib/runners/kosw.json index 0b8c208ad..639f8a304 100644 --- a/src/lib/runners/kosw.json +++ b/src/lib/runners/kosw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -18,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -55,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -69,11 +70,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -87,11 +90,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -104,11 +109,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -122,13 +129,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -142,20 +152,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kvso.json b/src/lib/runners/kvso.json index 21cbd3ef3..66f189f0e 100644 --- a/src/lib/runners/kvso.json +++ b/src/lib/runners/kvso.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -38,17 +40,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -63,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -88,18 +96,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -114,7 +126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -128,7 +141,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -139,21 +153,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "c", "highlightType": "default", @@ -163,16 +179,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kwyy.json b/src/lib/runners/kwyy.json index 660cdfc47..80605572f 100644 --- a/src/lib/runners/kwyy.json +++ b/src/lib/runners/kwyy.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -53,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -75,7 +82,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -87,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -99,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -164,33 +179,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kzkg.json b/src/lib/runners/kzkg.json index 868b345e3..939d7313d 100644 --- a/src/lib/runners/kzkg.json +++ b/src/lib/runners/kzkg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "C", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/laea.json b/src/lib/runners/laea.json index b04d15cec..3b819ec89 100644 --- a/src/lib/runners/laea.json +++ b/src/lib/runners/laea.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -57,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -68,28 +70,34 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ldqk.json b/src/lib/runners/ldqk.json index ccd791649..e912369b9 100644 --- a/src/lib/runners/ldqk.json +++ b/src/lib/runners/ldqk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -54,22 +56,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/lipt.json b/src/lib/runners/lipt.json index 5a353c14c..a05d3b9a7 100644 --- a/src/lib/runners/lipt.json +++ b/src/lib/runners/lipt.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +40,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -51,9 +52,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -67,7 +70,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -83,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -97,7 +102,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -108,13 +114,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -127,27 +136,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -158,7 +174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -170,7 +187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +203,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -196,9 +215,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -212,7 +233,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -228,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -242,7 +265,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -253,13 +277,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -272,28 +299,35 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -304,7 +338,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -316,7 +351,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -331,7 +367,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -342,9 +379,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -358,7 +397,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -374,7 +414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -388,7 +429,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -399,13 +441,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -419,7 +464,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -430,29 +476,37 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -463,7 +517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -475,7 +530,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -490,7 +546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -501,9 +558,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -517,7 +576,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -533,7 +593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -547,7 +608,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -558,13 +620,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -578,7 +643,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -589,29 +655,37 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -622,7 +696,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -634,7 +709,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -650,7 +726,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -664,7 +741,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -675,13 +753,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -695,7 +776,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -706,22 +788,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -732,7 +821,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -744,7 +834,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -760,7 +851,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -774,7 +866,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -785,13 +878,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -805,7 +901,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -816,23 +913,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -843,7 +946,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -855,7 +959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -871,7 +976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -885,7 +991,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -896,13 +1003,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -916,7 +1026,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -927,24 +1038,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -955,7 +1072,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -967,7 +1085,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -983,7 +1102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -997,7 +1117,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1008,13 +1129,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1028,7 +1152,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1042,7 +1167,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1056,7 +1182,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1067,29 +1194,37 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1100,7 +1235,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1112,7 +1248,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1128,7 +1265,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1142,7 +1280,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1153,13 +1292,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1173,7 +1315,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1187,7 +1330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1201,7 +1345,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1212,29 +1357,37 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1245,7 +1398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1257,7 +1411,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1271,7 +1426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1285,7 +1441,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1296,22 +1453,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1322,7 +1486,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1334,7 +1499,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1348,7 +1514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1362,7 +1529,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1373,23 +1541,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1400,7 +1574,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1412,7 +1587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1426,7 +1602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1440,7 +1617,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1451,24 +1629,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1479,7 +1663,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1491,7 +1676,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1505,7 +1691,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1519,7 +1706,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1530,23 +1718,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1557,7 +1751,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1569,7 +1764,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1580,20 +1776,25 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/lizi.json b/src/lib/runners/lizi.json index cf26d17b4..8bfaf44d7 100644 --- a/src/lib/runners/lizi.json +++ b/src/lib/runners/lizi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30,20 +29,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/loai.json b/src/lib/runners/loai.json index 0969b7ceb..7aa0e740d 100644 --- a/src/lib/runners/loai.json +++ b/src/lib/runners/loai.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "l", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ltpe.json b/src/lib/runners/ltpe.json index c765bf6f1..5424dc967 100644 --- a/src/lib/runners/ltpe.json +++ b/src/lib/runners/ltpe.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,26 +69,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -99,7 +107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -113,7 +122,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -128,7 +138,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -140,7 +151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -151,20 +163,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 } ], @@ -172,8 +192,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/lwoq.json b/src/lib/runners/lwoq.json index e855478f4..15639bfca 100644 --- a/src/lib/runners/lwoq.json +++ b/src/lib/runners/lwoq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -102,26 +108,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/lxgj.json b/src/lib/runners/lxgj.json index ab7dff7e5..5a055df3d 100644 --- a/src/lib/runners/lxgj.json +++ b/src/lib/runners/lxgj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -60,11 +61,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -79,7 +82,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -94,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -117,11 +123,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -136,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -148,7 +158,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -160,7 +171,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -171,13 +183,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -193,38 +209,46 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/lxhc.json b/src/lib/runners/lxhc.json index 7710cf07d..e507cc5c8 100644 --- a/src/lib/runners/lxhc.json +++ b/src/lib/runners/lxhc.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -38,26 +40,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/lxrk.json b/src/lib/runners/lxrk.json index d72e8460e..aa580dce4 100644 --- a/src/lib/runners/lxrk.json +++ b/src/lib/runners/lxrk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -28,7 +26,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -42,11 +41,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -60,11 +61,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -78,11 +81,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -96,11 +101,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -114,11 +121,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -132,11 +141,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -150,16 +161,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -170,16 +184,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 - } + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/mbje.json b/src/lib/runners/mbje.json index 3b3bcea0d..a94807f97 100644 --- a/src/lib/runners/mbje.json +++ b/src/lib/runners/mbje.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 - } + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mcug.json b/src/lib/runners/mcug.json index e846a60f9..9e0fbb717 100644 --- a/src/lib/runners/mcug.json +++ b/src/lib/runners/mcug.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30,16 +29,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -50,16 +52,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/mepb.json b/src/lib/runners/mepb.json index ef195d6b9..a041cb52f 100644 --- a/src/lib/runners/mepb.json +++ b/src/lib/runners/mepb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mhgm.json b/src/lib/runners/mhgm.json index 173c0a81e..a28d38df6 100644 --- a/src/lib/runners/mhgm.json +++ b/src/lib/runners/mhgm.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mhyv.json b/src/lib/runners/mhyv.json index e12d4848b..180d74f6d 100644 --- a/src/lib/runners/mhyv.json +++ b/src/lib/runners/mhyv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -41,7 +41,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -52,16 +53,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 } ], @@ -69,8 +77,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mibj.json b/src/lib/runners/mibj.json index ed5738eef..287bb6c9f 100644 --- a/src/lib/runners/mibj.json +++ b/src/lib/runners/mibj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -19,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -59,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -73,11 +74,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -91,11 +94,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -109,11 +114,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -126,11 +133,13 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -144,13 +153,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -164,11 +176,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -182,20 +196,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mifg.json b/src/lib/runners/mifg.json index 3fafad207..9e9d87f7b 100644 --- a/src/lib/runners/mifg.json +++ b/src/lib/runners/mifg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -52,20 +53,25 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -76,16 +82,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - } + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/mlnt.json b/src/lib/runners/mlnt.json index d10e4d480..8c4531341 100644 --- a/src/lib/runners/mlnt.json +++ b/src/lib/runners/mlnt.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -17,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -33,7 +32,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -48,7 +48,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -60,7 +61,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -72,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -84,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -114,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -128,15 +134,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -150,7 +159,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -164,40 +174,50 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mqvu.json b/src/lib/runners/mqvu.json index 604ffb36d..5a428973f 100644 --- a/src/lib/runners/mqvu.json +++ b/src/lib/runners/mqvu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "a", "highlightType": "default", @@ -12,16 +10,18 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/msiw.json b/src/lib/runners/msiw.json index 24fdd7421..f6ba4ffd4 100644 --- a/src/lib/runners/msiw.json +++ b/src/lib/runners/msiw.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -38,17 +40,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -63,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -88,25 +96,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/msrk.json b/src/lib/runners/msrk.json index a24fbc4f3..f9f8184c5 100644 --- a/src/lib/runners/msrk.json +++ b/src/lib/runners/msrk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "trueCaseActive", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -63,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -77,11 +78,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -95,11 +98,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -113,11 +118,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -131,11 +138,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -148,11 +157,13 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -166,13 +177,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -186,11 +200,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -204,11 +220,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -222,12 +240,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "trueCaseActive", "activePriority": 4 } ], @@ -235,8 +258,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mutg.json b/src/lib/runners/mutg.json index 9323b79d0..1ceb2ee99 100644 --- a/src/lib/runners/mutg.json +++ b/src/lib/runners/mutg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "m", @@ -54,18 +56,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "m", "highlightType": "default", @@ -75,16 +81,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/myjz.json b/src/lib/runners/myjz.json index 7da316052..50c911046 100644 --- a/src/lib/runners/myjz.json +++ b/src/lib/runners/myjz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -41,7 +41,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -52,21 +53,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -77,7 +83,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -91,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -105,7 +113,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -116,21 +125,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -141,7 +155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -155,7 +170,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -169,7 +185,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -180,22 +197,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -206,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -220,7 +243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -234,7 +258,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -245,21 +270,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -270,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -281,18 +312,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mzqc.json b/src/lib/runners/mzqc.json index 739d19a1d..5281449f8 100644 --- a/src/lib/runners/mzqc.json +++ b/src/lib/runners/mzqc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "k", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/mzys.json b/src/lib/runners/mzys.json index 9d7e05310..98df4a422 100644 --- a/src/lib/runners/mzys.json +++ b/src/lib/runners/mzys.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ngxc.json b/src/lib/runners/ngxc.json index 5e9be54c4..414d36c0e 100644 --- a/src/lib/runners/ngxc.json +++ b/src/lib/runners/ngxc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,11 +33,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -51,11 +52,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -69,20 +72,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nhqo.json b/src/lib/runners/nhqo.json index d0547c68b..3d8397952 100644 --- a/src/lib/runners/nhqo.json +++ b/src/lib/runners/nhqo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,31 +179,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/niwv.json b/src/lib/runners/niwv.json index a7433c473..6769eb462 100644 --- a/src/lib/runners/niwv.json +++ b/src/lib/runners/niwv.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -53,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -75,7 +82,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -87,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -99,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -164,33 +179,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nlbn.json b/src/lib/runners/nlbn.json index f2ad6e0e0..a351b13b6 100644 --- a/src/lib/runners/nlbn.json +++ b/src/lib/runners/nlbn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -96,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -150,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -164,15 +176,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -185,22 +200,31 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -216,7 +240,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -228,7 +253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -244,7 +270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -257,11 +284,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -274,15 +303,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -296,7 +329,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -308,7 +342,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -320,7 +355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -336,7 +372,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -350,7 +387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -364,15 +402,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -385,25 +426,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -419,7 +467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -431,7 +480,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -447,7 +497,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -460,11 +511,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -477,15 +530,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -499,7 +556,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -511,7 +569,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -523,7 +582,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -539,7 +599,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -553,7 +614,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -567,15 +629,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -588,25 +653,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -622,7 +694,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -634,7 +707,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -650,7 +724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -663,11 +738,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -680,15 +757,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -702,7 +783,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -714,7 +796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -726,7 +809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -742,7 +826,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -756,7 +841,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -770,15 +856,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -791,26 +880,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -826,7 +922,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -838,7 +935,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -854,7 +952,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -867,11 +966,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -884,15 +985,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -906,7 +1011,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -918,7 +1024,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -930,7 +1037,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -946,7 +1054,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -960,7 +1069,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -975,7 +1085,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -987,7 +1098,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1003,7 +1115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1016,11 +1129,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1033,23 +1148,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1062,25 +1183,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -1096,7 +1224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1108,7 +1237,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1124,7 +1254,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1137,11 +1268,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1154,15 +1287,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1176,7 +1313,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1188,7 +1326,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1200,7 +1339,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1216,7 +1356,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1230,7 +1371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1245,7 +1387,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1257,7 +1400,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1273,7 +1417,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1286,11 +1431,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1303,23 +1450,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1332,29 +1485,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1365,7 +1523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1377,7 +1536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1393,7 +1553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1407,7 +1568,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1422,7 +1584,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1434,7 +1597,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1450,7 +1614,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1463,11 +1628,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1480,23 +1647,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1509,20 +1682,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -1533,7 +1712,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1545,7 +1725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1561,7 +1742,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1575,7 +1757,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1590,7 +1773,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1602,7 +1786,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1618,7 +1803,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1631,11 +1817,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1648,23 +1836,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1677,21 +1871,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1702,7 +1901,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1714,7 +1914,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1730,7 +1931,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1744,7 +1946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1759,7 +1962,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1771,7 +1975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1787,7 +1992,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1800,11 +2006,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1817,23 +2025,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1846,21 +2060,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1871,7 +2090,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1883,7 +2103,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1899,7 +2120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1913,7 +2135,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1928,7 +2151,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1940,7 +2164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1956,7 +2181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1969,11 +2195,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1986,23 +2214,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -2015,22 +2249,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2041,7 +2280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2053,7 +2293,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2069,7 +2310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2083,7 +2325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2098,7 +2341,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2110,7 +2354,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2126,7 +2371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2139,11 +2385,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2156,23 +2404,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -2185,21 +2439,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2210,7 +2469,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2222,7 +2482,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2238,7 +2499,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2252,7 +2514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2267,7 +2530,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2279,7 +2543,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2295,7 +2560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2308,11 +2574,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2325,23 +2593,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -2354,21 +2628,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2379,7 +2658,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2391,7 +2671,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2407,7 +2688,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2421,7 +2703,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2437,7 +2720,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2450,11 +2734,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2467,17 +2753,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2490,20 +2780,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -2514,7 +2810,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2526,7 +2823,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2542,7 +2840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2556,7 +2855,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2572,7 +2872,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2585,11 +2886,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2602,17 +2905,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2625,21 +2932,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -2650,7 +2962,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2662,7 +2975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2678,7 +2992,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2692,7 +3007,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2708,7 +3024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2721,11 +3038,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2738,17 +3057,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2761,21 +3084,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2786,7 +3114,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2798,7 +3127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2814,7 +3144,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2828,7 +3159,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2844,7 +3176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2857,11 +3190,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2874,17 +3209,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2897,22 +3236,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2923,7 +3267,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2935,7 +3280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2951,7 +3297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2965,7 +3312,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2981,7 +3329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2994,11 +3343,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3011,17 +3362,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -3034,21 +3389,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -3059,7 +3419,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3071,7 +3432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3087,7 +3449,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3101,7 +3464,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3117,7 +3481,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3130,11 +3495,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3147,17 +3514,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -3170,21 +3541,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -3195,7 +3571,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3207,7 +3584,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3225,7 +3603,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3238,11 +3617,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3255,11 +3636,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3272,24 +3655,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nlyu.json b/src/lib/runners/nlyu.json index 6016dc90a..2cd879c9a 100644 --- a/src/lib/runners/nlyu.json +++ b/src/lib/runners/nlyu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nmbt.json b/src/lib/runners/nmbt.json index 826d673e1..12083bc29 100644 --- a/src/lib/runners/nmbt.json +++ b/src/lib/runners/nmbt.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "A", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -37,16 +36,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nmmz.json b/src/lib/runners/nmmz.json index 4d1964518..4977ce543 100644 --- a/src/lib/runners/nmmz.json +++ b/src/lib/runners/nmmz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -54,18 +56,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "i", "highlightType": "default", @@ -75,16 +81,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/nmrp.json b/src/lib/runners/nmrp.json index 131023577..70b04ff65 100644 --- a/src/lib/runners/nmrp.json +++ b/src/lib/runners/nmrp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -146,7 +158,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -158,7 +171,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -169,32 +183,40 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -208,7 +230,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -223,7 +246,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -238,7 +262,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -250,7 +275,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -261,11 +287,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -280,7 +309,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -292,7 +322,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -304,7 +335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -315,13 +347,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -338,7 +374,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -350,7 +387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -361,33 +399,41 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -401,7 +447,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -416,7 +463,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -431,7 +479,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -443,7 +492,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -454,11 +504,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -473,7 +526,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -485,7 +539,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -497,7 +552,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -508,13 +564,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -531,7 +591,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -543,7 +604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -554,34 +616,42 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -595,7 +665,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -610,7 +681,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -625,7 +697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -637,7 +710,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -648,11 +722,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -667,7 +744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -679,7 +757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -691,7 +770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -702,13 +782,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -725,7 +809,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -737,7 +822,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -748,33 +834,41 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -788,7 +882,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -803,7 +898,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -818,7 +914,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -830,7 +927,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -841,11 +939,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -861,7 +962,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -872,26 +974,33 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 - } + "priority": 3, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "blankNumber", @@ -905,7 +1014,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -920,7 +1030,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -935,7 +1046,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -947,7 +1059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -958,11 +1071,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -978,7 +1094,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -989,27 +1106,33 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -1023,7 +1146,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1038,7 +1162,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1053,7 +1178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1065,7 +1191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1076,11 +1203,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1096,7 +1226,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -1107,28 +1238,34 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -1142,7 +1279,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1157,7 +1295,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1172,7 +1311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1184,7 +1324,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1195,11 +1336,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1215,7 +1359,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1227,7 +1372,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1239,7 +1385,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1250,31 +1397,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -1288,7 +1443,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1303,7 +1459,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1318,7 +1475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1330,7 +1488,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1341,11 +1500,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1361,7 +1523,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1373,7 +1536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1385,7 +1549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1396,31 +1561,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -1434,7 +1607,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1449,7 +1623,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1464,7 +1639,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1476,7 +1652,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1487,24 +1664,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -1518,7 +1702,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1533,7 +1718,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1548,7 +1734,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1560,7 +1747,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1571,25 +1759,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -1603,7 +1797,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1618,7 +1813,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1633,7 +1829,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1645,7 +1842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1656,26 +1854,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -1689,7 +1893,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1704,7 +1909,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1719,7 +1925,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1731,7 +1938,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1743,25 +1951,31 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -1775,7 +1989,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1790,7 +2005,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1805,7 +2021,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1817,7 +2034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1829,25 +2047,31 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -1861,7 +2085,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1875,7 +2100,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1887,14 +2113,21 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -1910,7 +2143,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1924,7 +2158,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1936,17 +2171,21 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { "expression": { @@ -1962,7 +2201,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1976,7 +2216,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1988,18 +2229,22 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { "expression": { @@ -2015,7 +2260,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2029,7 +2275,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -2041,21 +2288,23 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -2066,16 +2315,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" - } + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nngz.json b/src/lib/runners/nngz.json index 266ef429d..054f1f4bf 100644 --- a/src/lib/runners/nngz.json +++ b/src/lib/runners/nngz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -56,11 +57,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -73,11 +76,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -90,24 +95,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nntn.json b/src/lib/runners/nntn.json index 7313339e3..2fbcf5d68 100644 --- a/src/lib/runners/nntn.json +++ b/src/lib/runners/nntn.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nplf.json b/src/lib/runners/nplf.json index 0c66a4dff..c1d7f5000 100644 --- a/src/lib/runners/nplf.json +++ b/src/lib/runners/nplf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nuco.json b/src/lib/runners/nuco.json index 3d8fb13d0..c78a9bea3 100644 --- a/src/lib/runners/nuco.json +++ b/src/lib/runners/nuco.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,30 +179,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nvdn.json b/src/lib/runners/nvdn.json index b2db218c1..b5eb53761 100644 --- a/src/lib/runners/nvdn.json +++ b/src/lib/runners/nvdn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -17,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -33,7 +32,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -48,7 +48,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -60,7 +61,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -72,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -84,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -114,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -127,11 +133,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,40 +153,50 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/nvqu.json b/src/lib/runners/nvqu.json index fbe0815b8..1f61df63e 100644 --- a/src/lib/runners/nvqu.json +++ b/src/lib/runners/nvqu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -102,27 +108,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" - } + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/oclg.json b/src/lib/runners/oclg.json index e64e1bec3..bc4e93cfb 100644 --- a/src/lib/runners/oclg.json +++ b/src/lib/runners/oclg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "f", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/olqy.json b/src/lib/runners/olqy.json new file mode 100644 index 000000000..e1a38a1fa --- /dev/null +++ b/src/lib/runners/olqy.json @@ -0,0 +1,368 @@ +{ + "expressionContainers": [ + { + "expression": { + "arg": { + "arg": { + "name": "a", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" + } + ], + "speed": 1, + "hideControls": true, + "explanationsVisibility": "hidden", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": false, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} diff --git a/src/lib/runners/olyw.json b/src/lib/runners/olyw.json index 52be5c9c1..b7098d71e 100644 --- a/src/lib/runners/olyw.json +++ b/src/lib/runners/olyw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -102,26 +108,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/omwd.json b/src/lib/runners/omwd.json index 4535ed6cc..1904b8f8f 100644 --- a/src/lib/runners/omwd.json +++ b/src/lib/runners/omwd.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -84,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -98,15 +102,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -119,30 +126,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/oork.json b/src/lib/runners/oork.json index 4b7dc03c5..480136ed6 100644 --- a/src/lib/runners/oork.json +++ b/src/lib/runners/oork.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,12 +64,17 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 } ], @@ -74,8 +82,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ooya.json b/src/lib/runners/ooya.json index e64e1bec3..bc4e93cfb 100644 --- a/src/lib/runners/ooya.json +++ b/src/lib/runners/ooya.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "f", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/oqpi.json b/src/lib/runners/oqpi.json index dd08d140d..a80e5f945 100644 --- a/src/lib/runners/oqpi.json +++ b/src/lib/runners/oqpi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -59,11 +60,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -76,11 +79,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -93,15 +98,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -115,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -127,7 +137,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -139,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -155,7 +167,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -169,7 +182,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -183,15 +197,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -204,22 +221,31 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -235,7 +261,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -247,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -265,7 +293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -278,11 +307,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -295,11 +326,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -312,15 +345,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -334,7 +371,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -346,7 +384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -358,7 +397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -374,7 +414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -388,7 +429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -402,15 +444,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -423,25 +468,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -457,7 +509,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -469,7 +522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -487,7 +541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -500,11 +555,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -517,11 +574,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -534,15 +593,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -556,7 +619,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -568,7 +632,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -580,7 +645,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -596,7 +662,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -610,7 +677,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -624,15 +692,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -645,26 +716,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -680,7 +758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -692,7 +771,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -710,7 +790,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -723,11 +804,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -740,11 +823,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -757,15 +842,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -779,7 +868,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -791,7 +881,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -803,7 +894,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -819,7 +911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -833,7 +926,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -848,7 +942,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -860,7 +955,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -878,7 +974,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -891,11 +988,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -908,11 +1007,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -925,23 +1026,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "i", @@ -954,25 +1061,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -988,7 +1102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1000,7 +1115,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1018,7 +1134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1031,11 +1148,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1048,11 +1167,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1065,15 +1186,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1087,7 +1212,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1099,7 +1225,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1111,7 +1238,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1127,7 +1255,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1141,7 +1270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1156,7 +1286,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1168,7 +1299,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1186,7 +1318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1199,11 +1332,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1216,11 +1351,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1233,23 +1370,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "i", @@ -1262,29 +1405,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -1295,7 +1443,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1307,7 +1456,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1323,7 +1473,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1337,7 +1488,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1352,7 +1504,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1364,7 +1517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1382,7 +1536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1395,11 +1550,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1412,11 +1569,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1429,23 +1588,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "i", @@ -1458,20 +1623,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "i", @@ -1482,7 +1653,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1494,7 +1666,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1510,7 +1683,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1524,7 +1698,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1539,7 +1714,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1551,7 +1727,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1569,7 +1746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1582,11 +1760,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1599,11 +1779,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1616,23 +1798,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "i", @@ -1645,21 +1833,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "i", @@ -1670,7 +1863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1682,7 +1876,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1698,7 +1893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1712,7 +1908,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1727,7 +1924,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1739,7 +1937,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1757,7 +1956,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1770,11 +1970,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1787,11 +1989,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1804,23 +2008,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "i", @@ -1833,22 +2043,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "i", @@ -1859,7 +2074,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1871,7 +2087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1887,7 +2104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1901,7 +2119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1916,7 +2135,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1928,7 +2148,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1946,7 +2167,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1959,11 +2181,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1976,11 +2200,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1993,23 +2219,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "i", @@ -2022,21 +2254,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "i", @@ -2047,7 +2284,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2059,7 +2297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2075,7 +2314,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2089,7 +2329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2104,7 +2345,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2116,7 +2358,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2134,7 +2377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2147,11 +2391,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2164,11 +2410,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2181,23 +2429,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "i", @@ -2210,21 +2464,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -2235,7 +2494,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2247,7 +2507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2263,7 +2524,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2277,7 +2539,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2295,7 +2558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2308,11 +2572,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2325,11 +2591,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2342,17 +2610,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "i", @@ -2365,20 +2637,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "i", @@ -2389,7 +2667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2401,7 +2680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2417,7 +2697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2431,7 +2712,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2449,7 +2731,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2462,11 +2745,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2479,11 +2764,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2496,17 +2783,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "i", @@ -2519,21 +2810,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "i", @@ -2544,7 +2840,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2556,7 +2853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2572,7 +2870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2586,7 +2885,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2604,7 +2904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2617,11 +2918,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2634,11 +2937,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2651,17 +2956,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "i", @@ -2674,22 +2983,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "i", @@ -2700,7 +3014,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2712,7 +3027,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2728,7 +3044,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2742,7 +3059,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2760,7 +3078,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2773,11 +3092,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2790,11 +3111,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2807,17 +3130,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "i", @@ -2830,21 +3157,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "i", @@ -2855,7 +3187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2867,7 +3200,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2883,7 +3217,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2897,7 +3232,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2915,7 +3251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2928,11 +3265,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2945,11 +3284,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2962,17 +3303,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "i", @@ -2985,21 +3330,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -3010,7 +3360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3022,7 +3373,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3042,7 +3394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3055,11 +3408,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3072,11 +3427,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3089,11 +3446,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3106,24 +3465,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 5 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/osff.json b/src/lib/runners/osff.json index 2e916f103..fcab3a576 100644 --- a/src/lib/runners/osff.json +++ b/src/lib/runners/osff.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 } ], @@ -88,8 +98,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/osqo.json b/src/lib/runners/osqo.json index 78c06a713..8d18f50be 100644 --- a/src/lib/runners/osqo.json +++ b/src/lib/runners/osqo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "b", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/otbe.json b/src/lib/runners/otbe.json index e8859f47f..4745730c1 100644 --- a/src/lib/runners/otbe.json +++ b/src/lib/runners/otbe.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 - } + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/oukl.json b/src/lib/runners/oukl.json index 93f1faccb..accd51638 100644 --- a/src/lib/runners/oukl.json +++ b/src/lib/runners/oukl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], @@ -88,8 +98,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ovua.json b/src/lib/runners/ovua.json index 1973ab266..e86ec7f73 100644 --- a/src/lib/runners/ovua.json +++ b/src/lib/runners/ovua.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -72,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -91,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -105,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -122,11 +128,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -140,17 +148,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -165,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -180,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -209,11 +225,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -226,13 +244,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -246,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -262,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,11 +298,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -292,32 +317,40 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "shorthandNumber", @@ -331,7 +364,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -346,7 +380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -358,7 +393,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -373,7 +409,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -387,7 +424,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -406,7 +444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -420,11 +459,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -437,11 +478,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -455,17 +498,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -480,7 +528,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -495,7 +544,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -511,7 +561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -524,11 +575,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -541,13 +594,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -561,7 +617,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -577,7 +634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -590,11 +648,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -607,33 +667,41 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 13, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "shorthandNumber", @@ -647,7 +715,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -662,7 +731,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -674,7 +744,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -689,7 +760,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -703,7 +775,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -722,7 +795,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -736,11 +810,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -753,11 +829,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -771,17 +849,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -796,7 +879,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -811,7 +895,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -827,7 +912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -840,11 +926,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -857,13 +945,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -877,7 +968,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -893,7 +985,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -906,11 +999,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -923,34 +1018,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 13, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "shorthandNumber", @@ -964,7 +1067,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -979,7 +1083,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -991,7 +1096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1006,7 +1112,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1020,7 +1127,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1039,7 +1147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1053,11 +1162,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1070,11 +1181,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1088,17 +1201,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1113,7 +1231,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1128,7 +1247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1144,7 +1264,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1157,11 +1278,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1175,7 +1298,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1187,7 +1311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1202,7 +1327,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1216,7 +1342,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1235,7 +1362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1249,11 +1377,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1266,11 +1396,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1284,23 +1416,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1314,7 +1453,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1330,7 +1470,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1343,11 +1484,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1361,7 +1504,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1373,7 +1517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1388,7 +1533,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1402,7 +1548,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1421,7 +1568,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1435,11 +1583,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1452,11 +1602,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1470,43 +1622,55 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "shorthandNumber", @@ -1520,7 +1684,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1535,7 +1700,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1547,7 +1713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1562,7 +1729,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1576,7 +1744,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1595,7 +1764,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1609,11 +1779,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1626,11 +1798,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1644,17 +1818,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1669,7 +1848,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1684,7 +1864,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1700,7 +1881,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1713,11 +1895,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1731,7 +1915,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1743,7 +1928,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1758,7 +1944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1772,7 +1959,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1791,7 +1979,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1805,11 +1994,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1822,11 +2013,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1840,23 +2033,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1870,7 +2070,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1886,7 +2087,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1899,11 +2101,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1917,7 +2121,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1929,7 +2134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1944,7 +2150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1958,7 +2165,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1977,7 +2185,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1991,11 +2200,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2008,11 +2219,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2026,43 +2239,55 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -2076,7 +2301,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2091,7 +2317,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2107,7 +2334,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2120,11 +2348,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2138,7 +2368,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2150,7 +2381,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2165,7 +2397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2179,7 +2412,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2198,7 +2432,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2212,11 +2447,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2229,11 +2466,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2247,23 +2486,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2278,7 +2524,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2294,7 +2541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2307,11 +2555,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2325,7 +2575,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2337,7 +2588,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2352,7 +2604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2366,7 +2619,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2385,7 +2639,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2399,11 +2654,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2416,11 +2673,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2434,36 +2693,47 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 17, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "shorthandNumber", @@ -2477,7 +2747,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2492,7 +2763,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2508,7 +2780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2521,11 +2794,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2539,7 +2814,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2551,7 +2827,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2566,7 +2843,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2580,7 +2858,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2599,7 +2878,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2613,11 +2893,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2630,11 +2912,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2648,23 +2932,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2679,7 +2970,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2695,7 +2987,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2708,11 +3001,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2726,7 +3021,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2738,7 +3034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2753,7 +3050,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2767,7 +3065,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2786,7 +3085,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2800,11 +3100,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2817,11 +3119,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2835,37 +3139,47 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "shorthandNumber", @@ -2879,7 +3193,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2894,7 +3209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2910,7 +3226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2923,11 +3240,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2941,7 +3260,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2953,7 +3273,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2968,7 +3289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2982,7 +3304,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3001,7 +3324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3015,11 +3339,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3032,11 +3358,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3050,23 +3378,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3081,7 +3416,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3097,7 +3433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3110,11 +3447,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3128,7 +3467,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3140,7 +3480,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3155,7 +3496,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3169,7 +3511,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3188,7 +3531,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3202,11 +3546,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3219,11 +3565,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3237,37 +3585,47 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "shorthandNumber", @@ -3281,7 +3639,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3296,7 +3655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3312,7 +3672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3325,11 +3686,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3343,7 +3706,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3355,7 +3719,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3370,7 +3735,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3384,7 +3750,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3403,7 +3770,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3417,11 +3785,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3434,11 +3804,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3452,23 +3824,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3483,7 +3862,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3499,7 +3879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3512,11 +3893,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3530,7 +3913,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3542,7 +3926,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3557,7 +3942,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3571,7 +3957,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3590,7 +3977,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3604,11 +3992,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3621,11 +4011,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3639,37 +4031,47 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "shorthandNumber", @@ -3683,7 +4085,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3698,7 +4101,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3714,7 +4118,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3727,11 +4132,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3745,7 +4152,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3757,7 +4165,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3772,7 +4181,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3786,7 +4196,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3805,7 +4216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3819,11 +4231,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3836,11 +4250,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3854,23 +4270,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3885,7 +4308,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3901,7 +4325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3914,11 +4339,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3932,7 +4359,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3944,7 +4372,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3959,7 +4388,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3973,7 +4403,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3992,7 +4423,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4006,11 +4438,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4023,11 +4457,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4041,38 +4477,48 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "shorthandNumber", @@ -4086,7 +4532,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4101,7 +4548,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4117,7 +4565,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4130,11 +4579,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4148,7 +4599,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4160,7 +4612,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4175,7 +4628,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4189,7 +4643,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4208,7 +4663,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4222,11 +4678,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4239,11 +4697,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4257,23 +4717,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4288,7 +4755,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4305,7 +4773,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4321,7 +4790,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4334,11 +4804,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4352,7 +4824,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4364,7 +4837,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4379,7 +4853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4393,7 +4868,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4412,7 +4888,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4426,11 +4903,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4443,11 +4922,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4461,23 +4942,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4491,7 +4979,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4507,7 +4996,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4520,11 +5010,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4538,7 +5030,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4550,7 +5043,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4565,7 +5059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4579,7 +5074,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4598,7 +5094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4612,11 +5109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4629,11 +5128,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4647,27 +5148,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4681,7 +5190,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4693,7 +5203,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4708,7 +5219,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4722,7 +5234,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4741,7 +5254,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4755,11 +5269,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4772,11 +5288,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4790,37 +5308,47 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 31, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "shorthandNumber", @@ -4834,7 +5362,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4849,7 +5378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4865,7 +5395,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4878,11 +5409,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4896,7 +5429,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4908,7 +5442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4923,7 +5458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4937,7 +5473,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4956,7 +5493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4970,11 +5508,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4987,11 +5527,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5005,23 +5547,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5036,7 +5585,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5053,7 +5603,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5069,7 +5620,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5082,11 +5634,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5100,7 +5654,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5112,7 +5667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5127,7 +5683,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5141,7 +5698,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5160,7 +5718,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5174,11 +5733,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5191,11 +5752,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5209,23 +5772,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5239,7 +5809,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5255,7 +5826,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5268,11 +5840,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5286,7 +5860,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5298,7 +5873,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5313,7 +5889,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5327,7 +5904,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5346,7 +5924,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5360,11 +5939,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5377,11 +5958,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5395,27 +5978,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5429,7 +6020,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5441,7 +6033,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5456,7 +6049,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5470,7 +6064,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5489,7 +6084,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5503,11 +6099,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5520,11 +6118,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5538,37 +6138,47 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 31, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -5582,7 +6192,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5599,7 +6210,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5615,7 +6227,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5628,11 +6241,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5646,7 +6261,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5658,7 +6274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5673,7 +6290,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5687,7 +6305,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5706,7 +6325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5720,11 +6340,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5737,11 +6359,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5755,23 +6379,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5785,7 +6416,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5801,7 +6433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5814,11 +6447,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5832,7 +6467,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5844,7 +6480,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5859,7 +6496,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5873,7 +6511,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5892,7 +6531,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5906,11 +6546,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5923,11 +6565,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5941,27 +6585,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5976,7 +6628,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5988,7 +6641,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6003,7 +6657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6017,7 +6672,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6036,7 +6692,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6050,11 +6707,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6067,11 +6726,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6085,30 +6746,39 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 - } + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 23, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "shorthandNumber", @@ -6122,7 +6792,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6139,7 +6810,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6155,7 +6827,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6168,11 +6841,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6186,7 +6861,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6198,7 +6874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6213,7 +6890,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6227,7 +6905,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6246,7 +6925,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6260,11 +6940,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6277,11 +6959,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6295,23 +6979,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6325,7 +7016,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6341,7 +7033,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6354,11 +7047,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6372,7 +7067,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6384,7 +7080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6399,7 +7096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6413,7 +7111,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6432,7 +7131,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6446,11 +7146,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6463,11 +7165,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6481,27 +7185,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6516,7 +7228,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6528,7 +7241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6543,7 +7257,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6557,7 +7272,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6576,7 +7292,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6590,11 +7307,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6607,11 +7326,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6625,31 +7346,39 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "shorthandNumber", @@ -6663,7 +7392,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6680,7 +7410,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6696,7 +7427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6709,11 +7441,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6727,7 +7461,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6739,7 +7474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6754,7 +7490,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6768,7 +7505,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6787,7 +7525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6801,11 +7540,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6818,11 +7559,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6836,23 +7579,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6866,7 +7616,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6882,7 +7633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6895,11 +7647,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6913,7 +7667,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6925,7 +7680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6940,7 +7696,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6954,7 +7711,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6973,7 +7731,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6987,11 +7746,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7004,11 +7765,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7022,27 +7785,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7057,7 +7828,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7069,7 +7841,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7084,7 +7857,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7098,7 +7872,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7117,7 +7892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7131,11 +7907,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7148,11 +7926,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7166,32 +7946,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "shorthandNumber", @@ -7205,7 +7993,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7222,7 +8011,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7238,7 +8028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7251,11 +8042,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7269,7 +8062,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7281,7 +8075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7296,7 +8091,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7310,7 +8106,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7329,7 +8126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7343,11 +8141,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7360,11 +8160,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7378,23 +8180,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7408,7 +8217,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7424,7 +8234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7437,11 +8248,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7455,7 +8268,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7467,7 +8281,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7482,7 +8297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7496,7 +8312,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7515,7 +8332,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7529,11 +8347,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7546,11 +8366,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7564,27 +8386,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7599,7 +8429,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7611,7 +8442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7626,7 +8458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7640,7 +8473,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7659,7 +8493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7673,11 +8508,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7692,7 +8529,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7708,7 +8546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7721,11 +8560,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7739,7 +8580,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7751,7 +8593,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7766,7 +8609,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7780,7 +8624,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7799,7 +8644,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7813,11 +8659,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7830,11 +8678,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7848,23 +8698,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7879,7 +8736,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7895,7 +8753,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7908,11 +8767,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7926,7 +8787,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7938,7 +8800,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7953,7 +8816,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7967,7 +8831,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7986,7 +8851,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8000,11 +8866,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8017,11 +8885,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8035,31 +8905,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -8073,31 +8952,39 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, + "numLeafNodes": 38, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "shorthandNumber", @@ -8111,7 +8998,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8128,7 +9016,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8144,7 +9033,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8157,11 +9047,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8175,7 +9067,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8187,7 +9080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8202,7 +9096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8216,7 +9111,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8235,7 +9131,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8249,11 +9146,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8266,11 +9165,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8284,23 +9185,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8314,7 +9222,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8330,7 +9239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8343,11 +9253,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8361,7 +9273,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8373,7 +9286,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8388,7 +9302,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8402,7 +9317,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8421,7 +9337,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8435,11 +9352,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8452,11 +9371,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8470,27 +9391,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8505,7 +9434,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8517,7 +9447,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8532,7 +9463,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8546,7 +9478,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8565,7 +9498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8579,11 +9513,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8598,7 +9534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8614,7 +9551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8627,11 +9565,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8645,7 +9585,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8657,7 +9598,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8672,7 +9614,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8686,7 +9629,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8705,7 +9649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8719,11 +9664,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8736,11 +9683,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8754,23 +9703,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8785,7 +9741,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8801,7 +9758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8814,11 +9772,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8832,7 +9792,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8844,7 +9805,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8859,7 +9821,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8873,7 +9836,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8892,7 +9856,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8906,11 +9871,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8923,11 +9890,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8941,31 +9910,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -8979,31 +9957,39 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, + "numLeafNodes": 38, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -9017,7 +10003,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9031,7 +10018,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9046,7 +10034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9060,7 +10049,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9079,7 +10069,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9093,11 +10084,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9112,7 +10105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9128,7 +10122,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9141,11 +10136,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9159,7 +10156,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9171,7 +10169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9186,7 +10185,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9200,7 +10200,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9219,7 +10220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9233,11 +10235,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9250,11 +10254,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9268,23 +10274,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9299,7 +10312,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9315,7 +10329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9328,11 +10343,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9346,7 +10363,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9358,7 +10376,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9373,7 +10392,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9387,7 +10407,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9406,7 +10427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9420,11 +10442,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9437,11 +10461,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9455,31 +10481,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -9493,20 +10528,29 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 22, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -9522,7 +10566,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9536,7 +10581,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9551,7 +10597,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9565,7 +10612,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9584,7 +10632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9598,11 +10647,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9617,7 +10668,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9633,7 +10685,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9646,11 +10699,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9664,7 +10719,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9676,7 +10732,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9691,7 +10748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9705,7 +10763,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9724,7 +10783,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9738,11 +10798,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9755,11 +10817,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9773,23 +10837,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9804,7 +10875,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9820,7 +10892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9833,11 +10906,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9851,7 +10926,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9863,7 +10939,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9878,7 +10955,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9892,7 +10970,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9911,7 +10990,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9925,11 +11005,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9942,11 +11024,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9960,31 +11044,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -9998,23 +11091,29 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { "expression": { @@ -10030,7 +11129,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10044,7 +11144,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10059,7 +11160,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10073,7 +11175,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10092,7 +11195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10106,11 +11210,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10125,7 +11231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10141,7 +11248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10154,11 +11262,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10172,7 +11282,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10184,7 +11295,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10199,7 +11311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10213,7 +11326,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10232,7 +11346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10246,11 +11361,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -10263,11 +11380,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10281,23 +11400,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10312,7 +11438,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10328,7 +11455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10341,11 +11469,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10359,7 +11489,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10371,7 +11502,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10386,7 +11518,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10400,7 +11533,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10419,7 +11553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10433,11 +11568,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -10450,11 +11587,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10468,31 +11607,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -10506,24 +11654,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { "expression": { @@ -10539,7 +11693,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10553,7 +11708,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10569,7 +11725,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10583,7 +11740,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10603,7 +11761,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10617,11 +11776,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10636,7 +11797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10652,7 +11814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10665,11 +11828,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10683,7 +11848,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10695,7 +11861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10710,7 +11877,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10724,7 +11892,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10743,7 +11912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10757,11 +11927,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -10774,11 +11946,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10792,23 +11966,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10823,7 +12004,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10839,7 +12021,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10852,11 +12035,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10870,7 +12055,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10882,7 +12068,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10897,7 +12084,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10911,7 +12099,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10930,7 +12119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10944,11 +12134,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -10961,11 +12153,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10979,31 +12173,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11017,23 +12220,29 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { "expression": { @@ -11049,7 +12258,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11063,7 +12273,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11079,7 +12290,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11093,7 +12305,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11113,7 +12326,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11127,11 +12341,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11146,7 +12362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11162,7 +12379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11175,11 +12393,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11193,7 +12413,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11205,7 +12426,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11220,7 +12442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11234,7 +12457,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11253,7 +12477,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11267,11 +12492,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -11284,11 +12511,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11302,23 +12531,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11333,7 +12569,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11349,7 +12586,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11362,11 +12600,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11380,7 +12620,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11392,7 +12633,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11407,7 +12649,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11421,7 +12664,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11440,7 +12684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11454,11 +12699,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -11471,11 +12718,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11489,31 +12738,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11527,27 +12785,31 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -11562,7 +12824,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11576,7 +12839,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11596,7 +12860,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11610,11 +12875,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11629,7 +12896,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11645,7 +12913,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11658,11 +12927,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11676,7 +12947,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11688,7 +12960,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11703,7 +12976,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11717,7 +12991,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11736,7 +13011,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11750,11 +13026,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -11767,11 +13045,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11785,23 +13065,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11816,7 +13103,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11832,7 +13120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11845,11 +13134,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11863,7 +13154,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11875,7 +13167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11890,7 +13183,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11904,7 +13198,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11923,7 +13218,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11937,11 +13233,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -11954,11 +13252,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11972,31 +13272,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -12010,22 +13319,27 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 21 } ], "speed": 1.75, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/owpg.json b/src/lib/runners/owpg.json index d0ee316d3..cb82753d3 100644 --- a/src/lib/runners/owpg.json +++ b/src/lib/runners/owpg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,16 +37,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/oykb.json b/src/lib/runners/oykb.json index b960853c8..ae37306ae 100644 --- a/src/lib/runners/oykb.json +++ b/src/lib/runners/oykb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -102,27 +108,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" - } + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ozbe.json b/src/lib/runners/ozbe.json index 86c615bb4..1347c2278 100644 --- a/src/lib/runners/ozbe.json +++ b/src/lib/runners/ozbe.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,17 +40,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -63,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -88,25 +96,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ozxi.json b/src/lib/runners/ozxi.json index cbf232788..fde69b724 100644 --- a/src/lib/runners/ozxi.json +++ b/src/lib/runners/ozxi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "m", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/pbhg.json b/src/lib/runners/pbhg.json index cd7cff4f3..caa8beae4 100644 --- a/src/lib/runners/pbhg.json +++ b/src/lib/runners/pbhg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], @@ -88,8 +98,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/pbop.json b/src/lib/runners/pbop.json index 2bebf476c..070403de2 100644 --- a/src/lib/runners/pbop.json +++ b/src/lib/runners/pbop.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "questionFoodGrey", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -63,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -80,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -91,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -108,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -149,11 +159,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -166,15 +178,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "questionFoodGrey", @@ -189,34 +205,42 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/peiy.json b/src/lib/runners/peiy.json index c820a9bd0..21ff97390 100644 --- a/src/lib/runners/peiy.json +++ b/src/lib/runners/peiy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -72,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -91,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -105,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -122,11 +128,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -140,17 +148,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -165,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -180,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -209,11 +225,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -226,13 +244,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -246,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -262,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,11 +298,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -292,36 +317,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/pgxb.json b/src/lib/runners/pgxb.json index 2619082b2..5b7ca2247 100644 --- a/src/lib/runners/pgxb.json +++ b/src/lib/runners/pgxb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,12 +37,14 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -54,16 +55,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/plbv.json b/src/lib/runners/plbv.json index cae2bb077..6761655f4 100644 --- a/src/lib/runners/plbv.json +++ b/src/lib/runners/plbv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -45,18 +45,21 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/plde.json b/src/lib/runners/plde.json index 6bd8450f1..5ca901ce8 100644 --- a/src/lib/runners/plde.json +++ b/src/lib/runners/plde.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,30 +179,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/pmdm.json b/src/lib/runners/pmdm.json index 9b5dd30b7..3f2fa0b44 100644 --- a/src/lib/runners/pmdm.json +++ b/src/lib/runners/pmdm.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/poha.json b/src/lib/runners/poha.json index ede812d11..b9513f881 100644 --- a/src/lib/runners/poha.json +++ b/src/lib/runners/poha.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -60,7 +61,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -72,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -84,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -114,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -128,15 +134,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -149,21 +158,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -178,7 +193,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -193,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -205,7 +222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -216,11 +234,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -235,7 +256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -247,7 +269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -259,7 +282,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -270,13 +294,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -292,38 +320,46 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/potg.json b/src/lib/runners/potg.json new file mode 100644 index 000000000..85c765447 --- /dev/null +++ b/src/lib/runners/potg.json @@ -0,0 +1,78 @@ +{ + "expressionContainers": [ + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" + }, + { + "expression": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [], + "funcPriorityAgg": [], + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 + } + ], + "speed": 1, + "hideControls": false, + "explanationsVisibility": "hiddenInitialPausedOnly", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": true, + "hideFuncUnboundBadgeOnExplanation": true, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} diff --git a/src/lib/runners/psyv.json b/src/lib/runners/psyv.json index 1daec6650..e4441fab8 100644 --- a/src/lib/runners/psyv.json +++ b/src/lib/runners/psyv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandNumber", @@ -147,32 +159,38 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qcmh.json b/src/lib/runners/qcmh.json index 1764474db..84f18aa03 100644 --- a/src/lib/runners/qcmh.json +++ b/src/lib/runners/qcmh.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -43,21 +45,22 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qfbk.json b/src/lib/runners/qfbk.json index 1a0d7aa17..98b0f270c 100644 --- a/src/lib/runners/qfbk.json +++ b/src/lib/runners/qfbk.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,31 +70,35 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qgau.json b/src/lib/runners/qgau.json index f76d10afe..d2e5bf06d 100644 --- a/src/lib/runners/qgau.json +++ b/src/lib/runners/qgau.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -18,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -55,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -69,11 +70,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -87,11 +90,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -104,11 +109,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -122,13 +129,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -142,20 +152,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qlcq.json b/src/lib/runners/qlcq.json index da3339d27..92c790e72 100644 --- a/src/lib/runners/qlcq.json +++ b/src/lib/runners/qlcq.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -53,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -75,7 +82,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -87,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -99,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -164,33 +179,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qoms.json b/src/lib/runners/qoms.json index 54b9adf64..55a00cf01 100644 --- a/src/lib/runners/qoms.json +++ b/src/lib/runners/qoms.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qrfw.json b/src/lib/runners/qrfw.json index 985544d90..650eb7064 100644 --- a/src/lib/runners/qrfw.json +++ b/src/lib/runners/qrfw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -102,26 +108,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qrgc.json b/src/lib/runners/qrgc.json index 8ec2d02c7..8d90bab3f 100644 --- a/src/lib/runners/qrgc.json +++ b/src/lib/runners/qrgc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -84,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -98,15 +102,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -119,31 +126,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qsnv.json b/src/lib/runners/qsnv.json index bc07b1823..f9fb92cd8 100644 --- a/src/lib/runners/qsnv.json +++ b/src/lib/runners/qsnv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -64,26 +66,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qsoa.json b/src/lib/runners/qsoa.json index a9f4fd8a7..576c3db3f 100644 --- a/src/lib/runners/qsoa.json +++ b/src/lib/runners/qsoa.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 - } + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jtxf.json b/src/lib/runners/qurt.json similarity index 62% rename from src/lib/runners/jtxf.json rename to src/lib/runners/qurt.json index 3b95a93a6..7e7c2a558 100644 --- a/src/lib/runners/jtxf.json +++ b/src/lib/runners/qurt.json @@ -1,68 +1,76 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { - "arg": { - "name": "blankNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumberAfterConvert": "binaryFirst" - }, - "func": { - "arg": { - "name": "blankNumber", + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ + 2, 1 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binarySecond" + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, - "func": { - "name": "mult", - "highlightType": "initialHighlighted", + "second": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1, - 2 + 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", - "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qwdg.json b/src/lib/runners/qwdg.json index 724653ac5..dc024f475 100644 --- a/src/lib/runners/qwdg.json +++ b/src/lib/runners/qwdg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "k", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qxob.json b/src/lib/runners/qxob.json index b80f122d0..87f3f12c3 100644 --- a/src/lib/runners/qxob.json +++ b/src/lib/runners/qxob.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,25 +69,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -98,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -127,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -139,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -150,20 +162,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], @@ -171,8 +191,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qycx.json b/src/lib/runners/qycx.json index cc55c4a84..ee3324ecd 100644 --- a/src/lib/runners/qycx.json +++ b/src/lib/runners/qycx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,16 +37,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rakk.json b/src/lib/runners/rakk.json index eaf7a9fe2..e25738620 100644 --- a/src/lib/runners/rakk.json +++ b/src/lib/runners/rakk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -54,22 +56,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rbup.json b/src/lib/runners/rbup.json index c522d3983..9a8bfc705 100644 --- a/src/lib/runners/rbup.json +++ b/src/lib/runners/rbup.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -52,24 +53,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rdae.json b/src/lib/runners/rdae.json index d098ec2ea..151c27450 100644 --- a/src/lib/runners/rdae.json +++ b/src/lib/runners/rdae.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -63,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -80,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -91,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -108,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -149,11 +159,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -166,15 +178,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -189,35 +205,43 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "type": "function", - "meta": "minusOneEffect" - } + "meta": "minusOneEffect", + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rgta.json b/src/lib/runners/rgta.json index e9f5047a9..b0d2a5ace 100644 --- a/src/lib/runners/rgta.json +++ b/src/lib/runners/rgta.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -28,20 +27,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rhcv.json b/src/lib/runners/rhcv.json index f0ff6bf77..9d0faa7db 100644 --- a/src/lib/runners/rhcv.json +++ b/src/lib/runners/rhcv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rhoa.json b/src/lib/runners/rhoa.json index 2eff7bda3..acfc4d0d9 100644 --- a/src/lib/runners/rhoa.json +++ b/src/lib/runners/rhoa.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -16,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -42,18 +42,21 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rico.json b/src/lib/runners/rico.json index 582a9e596..1d94b4939 100644 --- a/src/lib/runners/rico.json +++ b/src/lib/runners/rico.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rivc.json b/src/lib/runners/rivc.json index 8c9f781d5..57f8fd209 100644 --- a/src/lib/runners/rivc.json +++ b/src/lib/runners/rivc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -54,18 +56,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -76,7 +82,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -87,18 +94,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/rjfy.json b/src/lib/runners/rjfy.json index 080363d55..c21f48ab4 100644 --- a/src/lib/runners/rjfy.json +++ b/src/lib/runners/rjfy.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -43,21 +45,22 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "trueCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rjho.json b/src/lib/runners/rjho.json index 09fb4147d..97074326c 100644 --- a/src/lib/runners/rjho.json +++ b/src/lib/runners/rjho.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "A", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "B", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "A", @@ -74,13 +77,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -94,7 +100,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "B", @@ -123,11 +131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "A", @@ -140,28 +150,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rjzw.json b/src/lib/runners/rjzw.json index 85d09f585..8a7239519 100644 --- a/src/lib/runners/rjzw.json +++ b/src/lib/runners/rjzw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,22 +179,31 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -197,7 +219,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -223,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -236,15 +261,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -258,7 +287,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -270,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -282,7 +313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -298,7 +330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -312,7 +345,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -326,15 +360,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -347,25 +384,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -381,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -393,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -407,7 +453,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -420,15 +467,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -442,7 +493,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -454,7 +506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -466,7 +519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -482,7 +536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -496,7 +551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -510,15 +566,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -531,25 +590,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -565,7 +631,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -577,7 +644,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -591,7 +659,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -604,15 +673,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -626,7 +699,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -638,7 +712,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -650,7 +725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -666,7 +742,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -680,7 +757,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -694,15 +772,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -715,26 +796,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -750,7 +838,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -762,7 +851,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -776,7 +866,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -789,15 +880,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -811,7 +906,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -823,7 +919,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -835,7 +932,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -851,7 +949,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -865,7 +964,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -880,7 +980,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -892,7 +993,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -906,7 +1008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -919,23 +1022,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -948,25 +1057,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -982,7 +1098,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -994,7 +1111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1008,7 +1126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1021,15 +1140,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1043,7 +1166,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1055,7 +1179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1067,7 +1192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1083,7 +1209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1097,7 +1224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1112,7 +1240,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1124,7 +1253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1138,7 +1268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1151,23 +1282,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1180,29 +1317,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1213,7 +1355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1225,7 +1368,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1241,7 +1385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1255,7 +1400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1270,7 +1416,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1282,7 +1429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1296,7 +1444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1309,23 +1458,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1338,20 +1493,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -1362,7 +1523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1374,7 +1536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1390,7 +1553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1404,7 +1568,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1419,7 +1584,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1431,7 +1597,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1445,7 +1612,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1458,23 +1626,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1487,21 +1661,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1512,7 +1691,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1524,7 +1704,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1540,7 +1721,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1554,7 +1736,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1569,7 +1752,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1581,7 +1765,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1595,7 +1780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1608,23 +1794,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1637,21 +1829,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1662,7 +1859,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1674,7 +1872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1690,7 +1889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1704,7 +1904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1719,7 +1920,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1731,7 +1933,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1745,7 +1948,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1758,23 +1962,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1787,22 +1997,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1813,7 +2028,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1825,7 +2041,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1841,7 +2058,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1855,7 +2073,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1870,7 +2089,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1882,7 +2102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1896,7 +2117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1909,23 +2131,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -1938,21 +2166,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1963,7 +2196,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1975,7 +2209,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1991,7 +2226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2005,7 +2241,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2020,7 +2257,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2032,7 +2270,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2046,7 +2285,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2059,23 +2299,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -2088,21 +2334,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2113,7 +2364,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2125,7 +2377,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2141,7 +2394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2155,7 +2409,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2169,7 +2424,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2182,17 +2438,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2205,20 +2465,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -2229,7 +2495,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2241,7 +2508,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2257,7 +2525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2271,7 +2540,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2285,7 +2555,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2298,17 +2569,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2321,21 +2596,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -2346,7 +2626,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2358,7 +2639,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2374,7 +2656,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2388,7 +2671,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2402,7 +2686,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2415,17 +2700,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2438,21 +2727,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2463,7 +2757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2475,7 +2770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2491,7 +2787,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2505,7 +2802,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2519,7 +2817,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2532,17 +2831,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2555,22 +2858,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2581,7 +2889,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2593,7 +2902,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2609,7 +2919,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2623,7 +2934,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2637,7 +2949,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2650,17 +2963,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2673,21 +2990,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2698,7 +3020,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2710,7 +3033,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2726,7 +3050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2740,7 +3065,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2754,7 +3080,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2767,17 +3094,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -2790,21 +3121,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2815,7 +3151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2827,7 +3164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2843,7 +3181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2856,11 +3195,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2873,24 +3214,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rlrs.json b/src/lib/runners/rlrs.json index c937fb3e2..ef2a5b991 100644 --- a/src/lib/runners/rlrs.json +++ b/src/lib/runners/rlrs.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -80,30 +83,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rnug.json b/src/lib/runners/rnug.json index 41926e629..cadc96952 100644 --- a/src/lib/runners/rnug.json +++ b/src/lib/runners/rnug.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - } + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/roko.json b/src/lib/runners/roko.json index 067dd61f7..a1a3f5535 100644 --- a/src/lib/runners/roko.json +++ b/src/lib/runners/roko.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,20 +64,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rqjo.json b/src/lib/runners/rqjo.json index 438c010de..24a9e1b0d 100644 --- a/src/lib/runners/rqjo.json +++ b/src/lib/runners/rqjo.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,17 +40,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -63,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -88,26 +96,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rrmc.json b/src/lib/runners/rrmc.json new file mode 100644 index 000000000..9a2f16ea2 --- /dev/null +++ b/src/lib/runners/rrmc.json @@ -0,0 +1,25123 @@ +{ + "expressionContainers": [ + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 19, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 19, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 26, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 26, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 25, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 25 + }, + { + "expression": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 23 + }, + { + "expression": { + "type": "conditional", + "state": "conditionActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 23 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 21 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 21 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 3, + 8, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 3, + 8, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 2, + 7, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 2, + 7, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 1, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 26 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "conditionActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 1, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 26 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 5, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 5, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 13, + 4, + 10, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 33 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 13, + 4, + 10, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 33 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 12, + 3, + 9, + 5, + 6, + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 14, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 32 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 12, + 3, + 9, + 5, + 6, + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 14, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 32 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 11, + 2, + 8, + 4, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 11, + 2, + 8, + 4, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 10, + 1, + 7, + 3, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "conditionActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 10, + 1, + 7, + 3, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 3 + } + ], + "speed": 4, + "hideControls": false, + "explanationsVisibility": "hiddenInitialPausedOnly", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": true, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false, + "showDefaultAndActiveOnly": true +} diff --git a/src/lib/runners/rtza.json b/src/lib/runners/rtza.json index 6b441b29f..e9b0cc6de 100644 --- a/src/lib/runners/rtza.json +++ b/src/lib/runners/rtza.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumberRed", "highlightType": "default", @@ -12,16 +10,18 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ruou.json b/src/lib/runners/ruou.json index b722fb28c..acfc4d0d9 100644 --- a/src/lib/runners/ruou.json +++ b/src/lib/runners/ruou.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -16,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -42,18 +42,21 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rviy.json b/src/lib/runners/rviy.json index 673b765e9..92b43e5dc 100644 --- a/src/lib/runners/rviy.json +++ b/src/lib/runners/rviy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29,20 +28,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rypq.json b/src/lib/runners/rypq.json index b74594084..c94094576 100644 --- a/src/lib/runners/rypq.json +++ b/src/lib/runners/rypq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], @@ -88,8 +98,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ryqp.json b/src/lib/runners/ryqp.json index 5a64bf912..1b3f6823b 100644 --- a/src/lib/runners/ryqp.json +++ b/src/lib/runners/ryqp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -14,16 +12,18 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 5, - "shorthandNumberAfterConvert": "number" - } + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/sdta.json b/src/lib/runners/sdta.json index 71e3b9a4c..79719975e 100644 --- a/src/lib/runners/sdta.json +++ b/src/lib/runners/sdta.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "blankNumber", @@ -146,32 +158,38 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "condition" + "shorthandNumberAfterConvert": "condition", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/seie.json b/src/lib/runners/seie.json index 378575576..530ce02c9 100644 --- a/src/lib/runners/seie.json +++ b/src/lib/runners/seie.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 - } + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/sgfj.json b/src/lib/runners/sgfj.json index c2a8c9977..94f663f21 100644 --- a/src/lib/runners/sgfj.json +++ b/src/lib/runners/sgfj.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,17 +40,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -63,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -88,26 +96,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/sgnp.json b/src/lib/runners/sgnp.json index ed8e895c4..ff336a45d 100644 --- a/src/lib/runners/sgnp.json +++ b/src/lib/runners/sgnp.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/skoo.json b/src/lib/runners/skoo.json index 5fa0324b3..a5245e536 100644 --- a/src/lib/runners/skoo.json +++ b/src/lib/runners/skoo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "questionFoodGrey", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -63,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -80,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -91,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -108,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -149,11 +159,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -166,15 +178,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "questionFoodGrey", @@ -189,35 +205,43 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "type": "function", - "meta": "minusOneEffect" - } + "meta": "minusOneEffect", + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/smdm.json b/src/lib/runners/smdm.json index 5bd7aa886..f9c70e49a 100644 --- a/src/lib/runners/smdm.json +++ b/src/lib/runners/smdm.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -53,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -75,7 +82,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -87,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -99,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -164,33 +179,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/snlf.json b/src/lib/runners/snlf.json index 03d1a08de..e876227e0 100644 --- a/src/lib/runners/snlf.json +++ b/src/lib/runners/snlf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -19,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -59,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -73,11 +74,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -91,11 +94,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -109,11 +114,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -128,7 +135,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -144,7 +152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -157,11 +166,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -175,7 +186,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -187,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -202,7 +215,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -216,7 +230,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -235,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -249,11 +265,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -266,11 +284,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -284,23 +304,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -315,7 +342,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -331,7 +359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -344,11 +373,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -362,7 +393,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -374,7 +406,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -389,7 +422,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -403,7 +437,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -422,7 +457,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -436,11 +472,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -453,11 +491,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -471,31 +511,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -509,13 +558,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -529,11 +581,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -547,16 +601,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "arg": { "arg": { @@ -573,7 +631,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -587,7 +646,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -613,7 +673,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -627,11 +688,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -645,11 +708,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -663,11 +728,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -682,7 +749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -698,7 +766,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -711,11 +780,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -729,7 +800,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -741,7 +813,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -756,7 +829,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -770,7 +844,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -789,7 +864,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -803,11 +879,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -820,11 +898,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -838,23 +918,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -869,7 +956,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -885,7 +973,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -898,11 +987,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -916,7 +1007,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -928,7 +1020,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -943,7 +1036,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -957,7 +1051,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -976,7 +1071,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -990,11 +1086,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1007,11 +1105,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1025,31 +1125,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1063,13 +1172,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1083,11 +1195,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1101,17 +1215,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 3 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "falseCaseActive", "expression": { "arg": { "arg": { @@ -1128,7 +1245,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1142,7 +1260,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1168,7 +1287,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1182,11 +1302,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1200,11 +1322,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1218,11 +1342,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1237,7 +1363,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1253,7 +1380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1266,11 +1394,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1284,7 +1414,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1296,7 +1427,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1311,7 +1443,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1325,7 +1458,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1344,7 +1478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1358,11 +1493,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1375,11 +1512,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1393,23 +1532,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1424,7 +1570,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1440,7 +1587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1453,11 +1601,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1471,7 +1621,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1483,7 +1634,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1498,7 +1650,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1512,7 +1665,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1531,7 +1685,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1545,11 +1700,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1562,11 +1719,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1580,31 +1739,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1618,13 +1786,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1638,11 +1809,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1656,17 +1829,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 3 + "previouslyChangedExpressionState": "falseCaseActive", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -1692,7 +1868,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1706,11 +1883,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1724,11 +1903,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1742,11 +1923,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1761,7 +1944,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1777,7 +1961,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1790,11 +1975,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1808,7 +1995,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1820,7 +2008,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1835,7 +2024,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1849,7 +2039,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1868,7 +2059,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1882,11 +2074,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1899,11 +2093,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1917,23 +2113,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1948,7 +2151,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1964,7 +2168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1977,11 +2182,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1995,7 +2202,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2007,7 +2215,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2022,7 +2231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2036,7 +2246,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2055,7 +2266,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2069,11 +2281,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2086,11 +2300,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2104,31 +2320,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2142,11 +2367,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2160,11 +2387,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2178,16 +2407,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -2213,7 +2446,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2227,11 +2461,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2245,11 +2481,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2263,11 +2501,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2282,7 +2522,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2298,7 +2539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2311,11 +2553,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2329,7 +2573,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2341,7 +2586,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2356,7 +2602,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2370,7 +2617,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2389,7 +2637,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2403,11 +2652,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2420,11 +2671,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2438,23 +2691,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2469,7 +2729,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2485,7 +2746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2498,11 +2760,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2516,7 +2780,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2528,7 +2793,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2543,7 +2809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2557,7 +2824,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2576,7 +2844,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2590,11 +2859,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2607,11 +2878,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2625,31 +2898,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2663,11 +2945,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2681,11 +2965,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2699,17 +2985,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -2735,7 +3024,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2749,11 +3039,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2767,11 +3059,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2785,11 +3079,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2804,7 +3100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2820,7 +3117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2833,11 +3131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2851,7 +3151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2863,7 +3164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2878,7 +3180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2892,7 +3195,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2911,7 +3215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2925,11 +3230,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2942,11 +3249,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2960,23 +3269,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2991,7 +3307,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3007,7 +3324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3020,11 +3338,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3038,7 +3358,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3050,7 +3371,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3065,7 +3387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3079,7 +3402,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3098,7 +3422,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3112,11 +3437,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3129,11 +3456,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3147,31 +3476,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "needsAlphaConvert", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3185,11 +3523,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3203,11 +3543,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3221,17 +3563,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -3257,7 +3602,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3271,11 +3617,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3289,11 +3637,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3307,11 +3657,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3326,7 +3678,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3342,7 +3695,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3355,11 +3709,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3373,7 +3729,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3385,7 +3742,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3400,7 +3758,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3414,7 +3773,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3433,7 +3793,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3447,11 +3808,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3464,11 +3827,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3482,23 +3847,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3513,7 +3885,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3529,7 +3902,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3542,11 +3916,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3560,7 +3936,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3572,7 +3949,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3587,7 +3965,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3601,7 +3980,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3620,7 +4000,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3634,11 +4015,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3651,11 +4034,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3669,31 +4054,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3707,11 +4101,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3725,11 +4121,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3743,17 +4141,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -3779,7 +4180,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3793,11 +4195,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3811,11 +4215,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3829,11 +4235,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3848,7 +4256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3864,7 +4273,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3877,11 +4287,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3895,7 +4307,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3907,7 +4320,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3922,7 +4336,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3936,7 +4351,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3955,7 +4371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3969,11 +4386,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3986,11 +4405,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4004,23 +4425,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4035,7 +4463,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4051,7 +4480,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4064,11 +4494,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4082,7 +4514,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4094,7 +4527,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4109,7 +4543,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4123,7 +4558,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4142,7 +4578,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4156,11 +4593,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4173,11 +4612,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4191,31 +4632,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -4229,11 +4679,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -4247,11 +4699,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -4265,18 +4719,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -4302,7 +4759,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4316,11 +4774,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4334,11 +4794,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4352,11 +4814,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4371,7 +4835,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4387,7 +4852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4400,11 +4866,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4418,7 +4886,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4430,7 +4899,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4445,7 +4915,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4459,7 +4930,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4478,7 +4950,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4492,11 +4965,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4509,11 +4984,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4527,23 +5004,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4558,7 +5042,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4575,7 +5060,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4591,7 +5077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4604,11 +5091,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4622,7 +5111,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4634,7 +5124,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4649,7 +5140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4663,7 +5155,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4682,7 +5175,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4696,11 +5190,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4713,11 +5209,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4731,23 +5229,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4761,7 +5266,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4777,7 +5283,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4790,11 +5297,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4808,7 +5317,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4820,7 +5330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4835,7 +5346,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4849,7 +5361,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4868,7 +5381,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4882,11 +5396,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4899,11 +5415,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4917,27 +5435,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4951,7 +5477,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4963,7 +5490,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4978,7 +5506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4992,7 +5521,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5011,7 +5541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5025,11 +5556,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5042,11 +5575,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5060,31 +5595,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -5098,11 +5642,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -5116,11 +5662,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -5134,17 +5682,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 37 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -5170,7 +5721,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5184,11 +5736,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5202,11 +5756,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5220,11 +5776,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5239,7 +5797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5255,7 +5814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5268,11 +5828,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5286,7 +5848,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5298,7 +5861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5313,7 +5877,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5327,7 +5892,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5346,7 +5912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5360,11 +5927,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5377,11 +5946,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5395,23 +5966,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5426,7 +6004,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5443,7 +6022,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5459,7 +6039,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5472,11 +6053,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5490,7 +6073,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5502,7 +6086,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5517,7 +6102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5531,7 +6117,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5550,7 +6137,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5564,11 +6152,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5581,11 +6171,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5599,23 +6191,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5629,7 +6228,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5645,7 +6245,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5658,11 +6259,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5676,7 +6279,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5688,7 +6292,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5703,7 +6308,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5717,7 +6323,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5736,7 +6343,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5750,11 +6358,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5767,11 +6377,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5785,27 +6397,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5819,7 +6439,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5831,7 +6452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5846,7 +6468,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5860,7 +6483,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5879,7 +6503,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5893,11 +6518,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5910,11 +6537,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5928,31 +6557,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -5966,11 +6604,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -5984,11 +6624,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -6002,17 +6644,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 37 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -6038,7 +6683,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6052,11 +6698,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6070,11 +6718,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6088,11 +6738,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6109,7 +6761,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6125,7 +6778,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6138,11 +6792,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6156,7 +6812,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6168,7 +6825,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6183,7 +6841,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6197,7 +6856,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6216,7 +6876,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6230,11 +6891,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6247,11 +6910,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6265,23 +6930,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6295,7 +6967,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6311,7 +6984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6324,11 +6998,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6342,7 +7018,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6354,7 +7031,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6369,7 +7047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6383,7 +7062,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6402,7 +7082,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6416,11 +7097,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6433,11 +7116,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6451,27 +7136,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6486,7 +7179,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6498,7 +7192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6513,7 +7208,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6527,7 +7223,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6546,7 +7243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6560,11 +7258,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6577,11 +7277,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6595,25 +7297,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6627,11 +7336,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6645,11 +7356,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6663,16 +7376,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -6698,7 +7415,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6712,11 +7430,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6730,11 +7450,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6748,11 +7470,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6769,7 +7493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6785,7 +7510,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6798,11 +7524,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6816,7 +7544,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6828,7 +7557,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6843,7 +7573,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6857,7 +7588,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6876,7 +7608,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6890,11 +7623,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6907,11 +7642,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6925,23 +7662,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6955,7 +7699,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6971,7 +7716,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6984,11 +7730,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7002,7 +7750,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7014,7 +7763,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7029,7 +7779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7043,7 +7794,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7062,7 +7814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7076,11 +7829,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7093,11 +7848,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7111,27 +7868,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7146,7 +7911,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7158,7 +7924,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7173,7 +7940,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7187,7 +7955,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7206,7 +7975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7220,11 +7990,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7237,11 +8009,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7255,25 +8029,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7287,11 +8068,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7305,11 +8088,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7323,17 +8108,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -7359,7 +8147,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7373,11 +8162,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7391,11 +8182,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7409,11 +8202,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7430,7 +8225,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7446,7 +8242,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7459,11 +8256,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7477,7 +8276,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7489,7 +8289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7504,7 +8305,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7518,7 +8320,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7537,7 +8340,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7551,11 +8355,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7568,11 +8374,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7586,23 +8394,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7616,7 +8431,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7632,7 +8448,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7645,11 +8462,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7663,7 +8482,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7675,7 +8495,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7690,7 +8511,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7704,7 +8526,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7723,7 +8546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7737,11 +8561,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7754,11 +8580,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7772,27 +8600,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7807,7 +8643,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7819,7 +8656,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7834,7 +8672,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7848,7 +8687,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7867,7 +8707,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7881,11 +8722,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7898,11 +8741,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7916,25 +8761,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7948,11 +8800,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7966,11 +8820,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7984,18 +8840,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -8021,7 +8880,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8035,11 +8895,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8053,11 +8915,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8071,11 +8935,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8092,7 +8958,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8108,7 +8975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8121,11 +8989,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8139,7 +9009,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8151,7 +9022,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8166,7 +9038,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8180,7 +9053,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8199,7 +9073,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8213,11 +9088,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8230,11 +9107,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8248,23 +9127,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8278,7 +9164,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8294,7 +9181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8307,11 +9195,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8325,7 +9215,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8337,7 +9228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8352,7 +9244,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8366,7 +9259,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8385,7 +9279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8399,11 +9294,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8416,11 +9313,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8434,27 +9333,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8469,7 +9376,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8481,7 +9389,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8496,7 +9405,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8510,7 +9420,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8529,7 +9440,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8543,11 +9455,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8562,7 +9476,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8578,7 +9493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8591,11 +9507,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8609,7 +9527,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8621,7 +9540,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8636,7 +9556,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8650,7 +9571,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8669,7 +9591,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8683,11 +9606,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8700,11 +9625,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8718,23 +9645,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8749,7 +9683,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8765,7 +9700,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8778,11 +9714,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8796,7 +9734,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8808,7 +9747,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8823,7 +9763,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8837,7 +9778,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8856,7 +9798,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8870,11 +9813,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8887,11 +9832,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8905,31 +9852,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -8943,25 +9899,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -8975,11 +9938,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -8993,11 +9958,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -9011,17 +9978,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 44 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -9047,7 +10017,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9061,11 +10032,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9079,11 +10052,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9097,11 +10072,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9118,7 +10095,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9134,7 +10112,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9147,11 +10126,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9165,7 +10146,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9177,7 +10159,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9192,7 +10175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9206,7 +10190,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9225,7 +10210,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9239,11 +10225,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9256,11 +10244,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9274,23 +10264,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9304,7 +10301,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9320,7 +10318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9333,11 +10332,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9351,7 +10352,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9363,7 +10365,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9378,7 +10381,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9392,7 +10396,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9411,7 +10416,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9425,11 +10431,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9442,11 +10450,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9460,27 +10470,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9495,7 +10513,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9507,7 +10526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9522,7 +10542,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9536,7 +10557,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9555,7 +10577,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9569,11 +10592,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9588,7 +10613,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9604,7 +10630,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9617,11 +10644,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9635,7 +10664,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9647,7 +10677,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9662,7 +10693,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9676,7 +10708,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9695,7 +10728,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9709,11 +10743,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9726,11 +10762,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9744,23 +10782,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9775,7 +10820,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9791,7 +10837,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9804,11 +10851,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9822,7 +10871,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9834,7 +10884,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9849,7 +10900,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9863,7 +10915,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9882,7 +10935,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9896,11 +10950,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9913,11 +10969,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9931,31 +10989,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -9969,25 +11036,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -10001,11 +11075,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -10019,11 +11095,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -10037,17 +11115,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 44 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -10073,7 +11154,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10087,11 +11169,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10105,11 +11189,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10123,11 +11209,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10141,7 +11229,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10156,7 +11245,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10170,7 +11260,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10189,7 +11280,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10203,11 +11295,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10222,7 +11316,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10238,7 +11333,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10251,11 +11347,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10269,7 +11367,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10281,7 +11380,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10296,7 +11396,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10310,7 +11411,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10329,7 +11431,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10343,11 +11446,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10360,11 +11465,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10378,23 +11485,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10409,7 +11523,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10425,7 +11540,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10438,11 +11554,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10456,7 +11574,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10468,7 +11587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10483,7 +11603,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10497,7 +11618,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10516,7 +11638,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10530,11 +11653,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10547,11 +11672,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10565,31 +11692,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -10603,19 +11739,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10629,11 +11770,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10647,11 +11790,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10665,16 +11810,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -10700,7 +11849,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10714,11 +11864,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10732,11 +11884,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10750,11 +11904,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10768,7 +11924,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10783,7 +11940,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10797,7 +11955,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10816,7 +11975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10830,11 +11990,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10849,7 +12011,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10865,7 +12028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10878,11 +12042,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10896,7 +12062,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10908,7 +12075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10923,7 +12091,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10937,7 +12106,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10956,7 +12126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10970,11 +12141,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10987,11 +12160,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11005,23 +12180,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11036,7 +12218,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11052,7 +12235,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11065,11 +12249,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11083,7 +12269,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11095,7 +12282,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11110,7 +12298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11124,7 +12313,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11143,7 +12333,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11157,11 +12348,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11174,11 +12367,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11192,31 +12387,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11230,19 +12434,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11256,11 +12465,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11274,11 +12485,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11292,17 +12505,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -11328,7 +12544,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11342,11 +12559,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11360,11 +12579,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11378,11 +12599,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11396,7 +12619,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11411,7 +12635,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11425,7 +12650,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11444,7 +12670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11458,11 +12685,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11477,7 +12706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11493,7 +12723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11506,11 +12737,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11524,7 +12757,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11536,7 +12770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11551,7 +12786,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11565,7 +12801,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11584,7 +12821,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11598,11 +12836,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11615,11 +12855,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11633,23 +12875,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11664,7 +12913,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11680,7 +12930,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11693,11 +12944,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11711,7 +12964,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11723,7 +12977,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11738,7 +12993,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11752,7 +13008,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11771,7 +13028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11785,11 +13043,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11802,11 +13062,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11820,31 +13082,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11858,19 +13129,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11884,11 +13160,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11902,11 +13180,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11920,18 +13200,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -11957,7 +13240,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11971,11 +13255,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11989,11 +13275,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12007,11 +13295,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12025,7 +13315,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12048,7 +13339,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12062,11 +13354,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12080,11 +13374,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12098,11 +13394,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12116,7 +13414,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12142,7 +13441,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12156,11 +13456,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12174,11 +13476,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12192,11 +13496,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12210,11 +13516,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12229,7 +13537,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12245,7 +13554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12258,11 +13568,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12276,7 +13588,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12288,7 +13601,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12303,7 +13617,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12317,7 +13632,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12336,7 +13652,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12350,11 +13667,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -12367,11 +13686,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12385,23 +13706,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -12416,7 +13744,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12432,7 +13761,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12445,11 +13775,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12463,7 +13795,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12475,7 +13808,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12490,7 +13824,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12504,7 +13839,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12523,7 +13859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12537,11 +13874,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -12554,11 +13893,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12572,31 +13913,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -12610,19 +13960,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -12636,11 +13991,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -12654,11 +14011,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -12672,17 +14031,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 34 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -12708,7 +14070,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12722,11 +14085,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12740,11 +14105,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12758,11 +14125,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12776,7 +14145,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12799,7 +14169,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12813,11 +14184,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12831,11 +14204,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12849,11 +14224,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12867,7 +14244,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12893,7 +14271,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12907,11 +14286,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12925,11 +14306,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12943,11 +14326,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12961,11 +14346,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12980,7 +14367,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12996,7 +14384,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13009,11 +14398,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13027,7 +14418,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13039,7 +14431,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13054,7 +14447,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13068,7 +14462,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13087,7 +14482,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13101,11 +14497,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13118,11 +14516,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13136,23 +14536,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -13167,7 +14574,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13183,7 +14591,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13196,11 +14605,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13214,7 +14625,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13226,7 +14638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13241,7 +14654,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13255,7 +14669,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13274,7 +14689,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13288,11 +14704,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13305,11 +14723,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13323,31 +14743,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -13361,19 +14790,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -13387,11 +14821,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -13405,11 +14841,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -13423,17 +14861,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 34 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -13458,7 +14899,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13472,11 +14914,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13490,11 +14934,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13508,11 +14954,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13526,7 +14974,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13555,7 +15004,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13569,11 +15019,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13587,11 +15039,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13605,11 +15059,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13623,11 +15079,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13642,7 +15100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13658,7 +15117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13671,11 +15131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13689,7 +15151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13701,7 +15164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13716,7 +15180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13730,7 +15195,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13749,7 +15215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13763,11 +15230,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13780,11 +15249,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13798,23 +15269,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -13829,7 +15307,8 @@ 10 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13845,7 +15324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13858,11 +15338,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13876,7 +15358,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13888,7 +15371,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13903,7 +15387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13917,7 +15402,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13936,7 +15422,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13950,11 +15437,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13967,11 +15456,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13985,31 +15476,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14023,13 +15523,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14043,11 +15546,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14061,11 +15566,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14079,16 +15586,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 30 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -14113,7 +15624,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14127,11 +15639,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14145,11 +15659,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14163,11 +15679,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14181,7 +15699,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14210,7 +15729,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14224,11 +15744,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14242,11 +15764,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14260,11 +15784,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14278,11 +15804,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14297,7 +15825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14313,7 +15842,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14326,11 +15856,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14344,7 +15876,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14356,7 +15889,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14371,7 +15905,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14385,7 +15920,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14404,7 +15940,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14418,11 +15955,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -14435,11 +15974,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14453,23 +15994,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -14484,7 +16032,8 @@ 10 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14500,7 +16049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14513,11 +16063,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14531,7 +16083,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14543,7 +16096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14558,7 +16112,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14572,7 +16127,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14591,7 +16147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14605,11 +16162,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -14622,11 +16181,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14640,31 +16201,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14678,13 +16248,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14698,11 +16271,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14716,11 +16291,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14734,17 +16311,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 6 + "previouslyChangedExpressionState": "active", + "activePriority": 6, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -14767,7 +16347,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14781,11 +16362,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14799,11 +16382,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14817,7 +16402,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14846,7 +16432,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14860,11 +16447,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14878,11 +16467,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14896,11 +16487,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14914,11 +16507,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14933,7 +16528,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14949,7 +16545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14962,11 +16559,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14980,7 +16579,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14992,7 +16592,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15007,7 +16608,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15021,7 +16623,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15040,7 +16643,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15054,11 +16658,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -15071,11 +16677,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15089,23 +16697,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -15120,7 +16735,8 @@ 9 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15136,7 +16752,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15149,11 +16766,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15167,7 +16786,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15179,7 +16799,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15194,7 +16815,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15208,7 +16830,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15227,7 +16850,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15241,11 +16865,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -15258,11 +16884,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15276,31 +16904,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15314,13 +16951,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15334,11 +16974,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15352,11 +16994,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15370,16 +17014,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 6, + "containerState": "ready", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -15402,7 +17050,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15416,11 +17065,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15434,11 +17085,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15452,7 +17105,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15481,7 +17135,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15495,11 +17150,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15513,11 +17170,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15531,11 +17190,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15549,11 +17210,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15568,7 +17231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15584,7 +17248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15597,11 +17262,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15615,7 +17282,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15627,7 +17295,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15642,7 +17311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15656,7 +17326,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15675,7 +17346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15689,11 +17361,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -15706,11 +17380,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15724,23 +17400,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -15755,7 +17438,8 @@ 9 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15771,7 +17455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15784,11 +17469,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15802,7 +17489,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15814,7 +17502,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15829,7 +17518,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15843,7 +17533,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15862,7 +17553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15876,11 +17568,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -15893,11 +17587,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15911,31 +17607,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15949,13 +17654,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15969,11 +17677,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15987,11 +17697,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -16005,17 +17717,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 5 + "previouslyChangedExpressionState": "active", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 29 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16036,7 +17751,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16050,11 +17766,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16068,7 +17786,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16097,7 +17816,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16111,11 +17831,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16129,11 +17851,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16147,11 +17871,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16165,11 +17891,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16184,7 +17912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16200,7 +17929,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16213,11 +17943,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16231,7 +17963,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16243,7 +17976,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16258,7 +17992,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16272,7 +18007,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16291,7 +18027,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16305,11 +18042,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -16322,11 +18061,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16340,23 +18081,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -16371,7 +18119,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16387,7 +18136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16400,11 +18150,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16418,7 +18170,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16430,7 +18183,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16445,7 +18199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16459,7 +18214,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16478,7 +18234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16492,11 +18249,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -16509,11 +18268,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16527,31 +18288,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -16565,13 +18335,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -16585,11 +18358,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -16603,11 +18378,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -16621,16 +18398,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 5, + "containerState": "ready", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -16651,7 +18432,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16665,11 +18447,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16683,7 +18467,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16712,7 +18497,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16726,11 +18512,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16744,11 +18532,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16762,11 +18552,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16780,11 +18572,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16799,7 +18593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16815,7 +18610,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16828,11 +18624,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16846,7 +18644,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16858,7 +18657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16873,7 +18673,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16887,7 +18688,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16906,7 +18708,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16920,11 +18723,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -16937,11 +18742,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16955,23 +18762,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -16986,7 +18800,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17002,7 +18817,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17015,11 +18831,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17033,7 +18851,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17045,7 +18864,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17060,7 +18880,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17074,7 +18895,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17093,7 +18915,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17107,11 +18930,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -17124,11 +18949,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17142,31 +18969,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17180,13 +19016,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17200,11 +19039,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17218,11 +19059,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17236,17 +19079,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "active", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17264,7 +19110,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17278,7 +19125,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17307,7 +19155,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17321,11 +19170,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17339,11 +19190,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17357,11 +19210,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17375,11 +19230,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17394,7 +19251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17410,7 +19268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17423,11 +19282,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17441,7 +19302,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17453,7 +19315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17468,7 +19331,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17482,7 +19346,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17501,7 +19366,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17515,11 +19381,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -17532,11 +19400,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17550,23 +19420,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -17581,7 +19458,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17597,7 +19475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17610,11 +19489,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17628,7 +19509,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17640,7 +19522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17655,7 +19538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17669,7 +19553,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17688,7 +19573,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17702,11 +19588,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -17719,11 +19607,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17737,31 +19627,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17775,13 +19674,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17795,11 +19697,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17813,11 +19717,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -17831,20 +19737,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 27 } ], "speed": 1.75, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/spga.json b/src/lib/runners/spga.json index 4d8719096..80c160763 100644 --- a/src/lib/runners/spga.json +++ b/src/lib/runners/spga.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "f", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/sskt.json b/src/lib/runners/sskt.json index 60d332942..da80778e5 100644 --- a/src/lib/runners/sskt.json +++ b/src/lib/runners/sskt.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -26,7 +24,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -40,11 +39,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -58,11 +59,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -76,11 +79,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -94,11 +99,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -112,11 +119,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -130,20 +139,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/sucz.json b/src/lib/runners/sucz.json index 254f1924a..9a8d6c6ce 100644 --- a/src/lib/runners/sucz.json +++ b/src/lib/runners/sucz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,16 +37,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/svbd.json b/src/lib/runners/svbd.json index 94f9f86d2..7e2d576be 100644 --- a/src/lib/runners/svbd.json +++ b/src/lib/runners/svbd.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -97,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -109,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -123,7 +132,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -136,15 +146,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -159,7 +173,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -171,7 +186,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -182,11 +198,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -201,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -213,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -225,7 +246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -236,13 +258,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -259,7 +285,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -271,7 +298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -282,32 +310,40 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -321,7 +357,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -333,7 +370,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -349,7 +387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -362,11 +401,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -379,15 +420,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -402,7 +447,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -414,7 +460,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -428,7 +475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -441,15 +489,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -464,7 +516,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -476,7 +529,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -487,11 +541,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -506,7 +563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -518,7 +576,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -530,7 +589,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -541,13 +601,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -564,7 +628,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -576,7 +641,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -587,33 +653,41 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -627,7 +701,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -639,7 +714,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -655,7 +731,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -668,11 +745,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -685,15 +764,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -708,7 +791,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -720,7 +804,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -734,7 +819,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -747,15 +833,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -770,7 +860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -782,7 +873,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -793,11 +885,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -812,7 +907,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -824,7 +920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -836,7 +933,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -847,13 +945,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -870,7 +972,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -882,7 +985,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -893,34 +997,42 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -934,7 +1046,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -946,7 +1059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -962,7 +1076,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -975,11 +1090,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -992,15 +1109,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1015,7 +1136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1027,7 +1149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1041,7 +1164,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1054,15 +1178,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1077,7 +1205,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1089,7 +1218,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1100,11 +1230,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1119,7 +1252,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1131,7 +1265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1143,7 +1278,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1154,13 +1290,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1177,7 +1317,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1189,7 +1330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1200,33 +1342,41 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -1240,7 +1390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1252,7 +1403,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1268,7 +1420,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1281,11 +1434,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1298,15 +1453,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1321,7 +1480,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1333,7 +1493,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1347,7 +1508,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1360,15 +1522,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1383,7 +1549,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1395,7 +1562,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1406,11 +1574,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1426,7 +1597,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1437,26 +1609,33 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 - } + "priority": 3, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -1470,7 +1649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1482,7 +1662,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1498,7 +1679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1511,11 +1693,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1528,15 +1712,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1551,7 +1739,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1563,7 +1752,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1577,7 +1767,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1590,15 +1781,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1613,7 +1808,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1625,7 +1821,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1636,11 +1833,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1656,7 +1856,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1667,27 +1868,33 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -1701,7 +1908,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1713,7 +1921,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1729,7 +1938,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1742,11 +1952,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1759,15 +1971,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1782,7 +1998,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1794,7 +2011,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1808,7 +2026,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1821,15 +2040,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1844,7 +2067,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1856,7 +2080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1867,11 +2092,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1887,7 +2115,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1898,28 +2127,34 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -1933,7 +2168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1945,7 +2181,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1961,7 +2198,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1974,11 +2212,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1991,15 +2231,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2014,7 +2258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2026,7 +2271,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2040,7 +2286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2053,15 +2300,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2076,7 +2327,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2088,7 +2340,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2099,11 +2352,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2119,7 +2375,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2131,7 +2388,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2143,7 +2401,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2154,31 +2413,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -2192,7 +2459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2204,7 +2472,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2220,7 +2489,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2233,11 +2503,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2250,15 +2522,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2273,7 +2549,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2285,7 +2562,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2299,7 +2577,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2312,15 +2591,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2335,7 +2618,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2347,7 +2631,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2358,11 +2643,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2378,7 +2666,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2390,7 +2679,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2402,7 +2692,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2413,31 +2704,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -2451,7 +2750,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2463,7 +2763,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2479,7 +2780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2492,11 +2794,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2509,15 +2813,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2532,7 +2840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2544,7 +2853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2558,7 +2868,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2571,15 +2882,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2594,7 +2909,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2606,7 +2922,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2617,24 +2934,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -2648,7 +2972,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2660,7 +2985,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2676,7 +3002,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2689,11 +3016,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2706,15 +3035,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2729,7 +3062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2741,7 +3075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2755,7 +3090,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2768,15 +3104,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2791,7 +3131,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2803,7 +3144,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2814,25 +3156,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -2846,7 +3194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2858,7 +3207,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2874,7 +3224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2887,11 +3238,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2904,15 +3257,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2927,7 +3284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2939,7 +3297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2953,7 +3312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2966,15 +3326,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2989,7 +3353,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3001,7 +3366,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3012,26 +3378,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -3045,7 +3417,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3057,7 +3430,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3073,7 +3447,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3086,11 +3461,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3103,15 +3480,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3126,7 +3507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3138,7 +3520,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3152,7 +3535,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3165,15 +3549,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3188,7 +3576,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3200,7 +3589,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3212,7 +3602,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3224,7 +3615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3238,7 +3630,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3251,33 +3644,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -3291,7 +3693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3303,7 +3706,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3319,7 +3723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3332,11 +3737,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3349,15 +3756,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3372,7 +3783,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3384,7 +3796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3398,7 +3811,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3411,15 +3825,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3434,7 +3852,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3446,7 +3865,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3458,7 +3878,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3470,7 +3891,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3484,7 +3906,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3497,33 +3920,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -3537,7 +3969,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3549,7 +3982,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3565,7 +3999,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3578,11 +4013,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3595,15 +4032,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3617,7 +4058,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3629,7 +4071,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3641,7 +4084,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3655,7 +4099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3668,22 +4113,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -3699,7 +4154,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3711,7 +4167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3727,7 +4184,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3740,11 +4198,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3757,15 +4217,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3779,7 +4243,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3791,7 +4256,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3803,7 +4269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3817,7 +4284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3830,25 +4298,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -3864,7 +4339,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3876,7 +4352,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3892,7 +4369,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3905,11 +4383,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3922,15 +4402,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3944,7 +4428,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3956,7 +4441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3968,7 +4454,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3982,7 +4469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3995,26 +4483,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -4030,7 +4525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4042,7 +4538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4058,7 +4555,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -4071,11 +4569,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -4088,15 +4588,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4110,7 +4614,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4122,7 +4627,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4134,7 +4640,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4148,7 +4655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -4161,29 +4669,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "f", @@ -4194,7 +4707,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4206,7 +4720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4220,7 +4735,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -4233,24 +4749,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1.5, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/sxnt.json b/src/lib/runners/sxnt.json index 0bbfd8015..14eac7f50 100644 --- a/src/lib/runners/sxnt.json +++ b/src/lib/runners/sxnt.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -25,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -41,7 +44,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -64,27 +69,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/tfsi.json b/src/lib/runners/tfsi.json index f77424aa8..ac22f8909 100644 --- a/src/lib/runners/tfsi.json +++ b/src/lib/runners/tfsi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -18,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -55,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -69,11 +70,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -87,11 +90,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -106,7 +111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -122,7 +128,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -135,11 +142,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -153,7 +162,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -165,7 +175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -180,7 +191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -194,7 +206,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -213,7 +226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -227,11 +241,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -244,11 +260,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -262,23 +280,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -293,7 +318,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -309,7 +335,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -322,11 +349,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -340,7 +369,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -352,7 +382,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -367,7 +398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -381,7 +413,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -400,7 +433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -414,11 +448,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -431,11 +467,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -449,31 +487,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -487,13 +534,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -507,20 +557,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 23 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/thbw.json b/src/lib/runners/thbw.json index 6f09b45be..098cdfd6f 100644 --- a/src/lib/runners/thbw.json +++ b/src/lib/runners/thbw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -24,18 +23,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/thkn.json b/src/lib/runners/thkn.json index 54e4e3a7f..c1eaa9a06 100644 --- a/src/lib/runners/thkn.json +++ b/src/lib/runners/thkn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -57,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -68,20 +70,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -96,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -110,7 +121,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -124,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -138,7 +151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -149,23 +163,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -180,7 +200,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -194,7 +215,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -208,7 +230,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -222,7 +245,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -233,23 +257,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -264,7 +294,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -278,7 +309,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -292,7 +324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -306,7 +339,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -317,24 +351,30 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -349,7 +389,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -363,7 +404,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -377,7 +419,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -391,7 +434,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -402,23 +446,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -433,7 +483,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -447,7 +498,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -461,7 +513,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -475,7 +528,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -486,27 +540,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -519,7 +577,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -533,7 +592,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -544,14 +604,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -566,7 +633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -580,7 +648,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -591,17 +660,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -616,7 +689,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -630,7 +704,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -641,17 +716,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -666,7 +745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -680,7 +760,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -691,18 +772,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -717,7 +802,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -731,7 +817,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -742,21 +829,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -766,16 +855,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/tjaf.json b/src/lib/runners/tjaf.json index b55a990fd..dcf00dc61 100644 --- a/src/lib/runners/tjaf.json +++ b/src/lib/runners/tjaf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -84,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -98,15 +102,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -119,30 +126,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/toem.json b/src/lib/runners/toem.json index 5a83c9f6e..0e581937b 100644 --- a/src/lib/runners/toem.json +++ b/src/lib/runners/toem.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -63,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -77,11 +78,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -95,11 +98,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -113,11 +118,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -131,11 +138,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -148,11 +157,13 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -166,13 +177,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -186,11 +200,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -204,11 +220,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -222,20 +240,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/tpyg.json b/src/lib/runners/tpyg.json index 4deb120c0..1e3d2fd2a 100644 --- a/src/lib/runners/tpyg.json +++ b/src/lib/runners/tpyg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -97,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -109,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -127,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -140,11 +150,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -157,11 +169,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -174,15 +188,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -197,7 +215,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -221,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -233,7 +254,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -249,7 +271,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -263,7 +286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -277,15 +301,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -299,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -313,40 +341,50 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/trwj.json b/src/lib/runners/trwj.json new file mode 100644 index 000000000..ba8aedde2 --- /dev/null +++ b/src/lib/runners/trwj.json @@ -0,0 +1,57 @@ +{ + "expressionContainers": [ + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "blankNumberPurple", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "blankNumberPink", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" + } + ], + "speed": 1, + "hideControls": true, + "explanationsVisibility": "hidden", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": false, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} diff --git a/src/lib/runners/qaoa.json b/src/lib/runners/txxw.json similarity index 64% rename from src/lib/runners/qaoa.json rename to src/lib/runners/txxw.json index e539809ee..696207a11 100644 --- a/src/lib/runners/qaoa.json +++ b/src/lib/runners/txxw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,22 +43,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", "state": "default", "checkType": "isZero", "condition": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -68,14 +93,17 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { - "arg": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { "name": "f", @@ -84,14 +112,15 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, + 2, + 5, 3, - 4, - 5 + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -101,15 +130,17 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 4 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -119,61 +150,48 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "mult", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "type": "call", - "priority": 3 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { "name": "a", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -183,13 +201,14 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -198,13 +217,14 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -214,11 +234,12 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -227,15 +248,17 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -244,18 +267,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { "name": "b", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -264,13 +290,14 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -280,11 +307,12 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -293,15 +321,17 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -310,36 +340,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/udxn.json b/src/lib/runners/udxn.json index e1dfe032b..a35426410 100644 --- a/src/lib/runners/udxn.json +++ b/src/lib/runners/udxn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -102,27 +108,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" - } + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/uexo.json b/src/lib/runners/uexo.json index 50530b9fe..bd062f147 100644 --- a/src/lib/runners/uexo.json +++ b/src/lib/runners/uexo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +56,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -70,7 +72,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -96,7 +100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -109,23 +114,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -138,21 +149,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -163,7 +179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -175,7 +192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -191,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -205,7 +224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -220,7 +240,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -232,7 +253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -246,7 +268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -259,23 +282,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -288,21 +317,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -313,7 +347,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -325,7 +360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -341,7 +377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -355,7 +392,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -370,7 +408,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -382,7 +421,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +436,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -409,23 +450,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -438,22 +485,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -464,7 +516,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -476,7 +529,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -492,7 +546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -506,7 +561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -521,7 +577,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -533,7 +590,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -547,7 +605,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -560,23 +619,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -589,21 +654,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -614,7 +684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -626,7 +697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -642,7 +714,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -656,7 +729,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -671,7 +745,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -683,7 +758,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -697,7 +773,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -710,23 +787,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "b", @@ -739,21 +822,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -764,7 +852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -776,7 +865,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -792,7 +882,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -806,7 +897,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -820,7 +912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -833,17 +926,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -856,24 +953,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ugvz.json b/src/lib/runners/ugvz.json index 63b046c7a..a3e876665 100644 --- a/src/lib/runners/ugvz.json +++ b/src/lib/runners/ugvz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -97,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -109,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -127,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -140,11 +150,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -157,11 +169,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -174,15 +188,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -197,7 +215,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -221,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -233,7 +254,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -249,7 +271,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -263,7 +286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -277,15 +301,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -299,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -313,36 +341,46 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -356,7 +394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -368,7 +407,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -384,7 +424,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -397,11 +438,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -414,15 +457,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -437,7 +484,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -449,7 +497,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -467,7 +516,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -480,11 +530,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -497,11 +549,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -514,15 +568,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -537,7 +595,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -549,7 +608,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -561,7 +621,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -573,7 +634,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -589,7 +651,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -603,7 +666,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -617,15 +681,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -639,7 +706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -653,37 +721,47 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -697,7 +775,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -709,7 +788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -725,7 +805,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -738,11 +819,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -755,15 +838,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -778,7 +865,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -790,7 +878,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -808,7 +897,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -821,11 +911,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -838,11 +930,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -855,15 +949,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -878,7 +976,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -890,7 +989,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -902,7 +1002,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -914,7 +1015,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -930,7 +1032,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -944,7 +1047,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -958,15 +1062,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -980,7 +1087,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -994,38 +1102,48 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -1039,7 +1157,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1051,7 +1170,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1067,7 +1187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1080,11 +1201,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1097,15 +1220,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1120,7 +1247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1132,7 +1260,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1150,7 +1279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1163,11 +1293,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1180,11 +1312,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1197,15 +1331,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1220,7 +1358,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1232,7 +1371,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1244,7 +1384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1256,7 +1397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1272,7 +1414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1286,7 +1429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1300,15 +1444,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1322,7 +1469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1337,7 +1485,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1349,7 +1498,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1367,7 +1517,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1380,11 +1531,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1397,11 +1550,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1414,45 +1569,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 6 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 6 }, + "numLeafNodes": 15, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -1466,7 +1634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1478,7 +1647,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1494,7 +1664,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1507,11 +1678,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1524,15 +1697,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1547,7 +1724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1559,7 +1737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1577,7 +1756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1590,11 +1770,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1607,11 +1789,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1624,15 +1808,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1647,7 +1835,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1659,7 +1848,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1671,7 +1861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1683,7 +1874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1699,7 +1891,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1713,7 +1906,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1727,15 +1921,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1749,7 +1946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1764,7 +1962,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1776,7 +1975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1794,7 +1994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1807,11 +2008,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1824,11 +2027,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1841,45 +2046,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 6 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 6 }, + "numLeafNodes": 15, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -1893,7 +2111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1905,7 +2124,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1921,7 +2141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1934,11 +2155,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1951,15 +2174,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1973,7 +2200,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1985,7 +2213,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1997,7 +2226,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2013,7 +2243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2027,7 +2258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2041,15 +2273,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2063,7 +2298,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2078,7 +2314,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2090,7 +2327,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2108,7 +2346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2121,11 +2360,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2138,11 +2379,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2155,34 +2398,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -2198,7 +2455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2210,7 +2468,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2226,7 +2485,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2239,11 +2499,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2256,15 +2518,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2278,7 +2544,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2290,7 +2557,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2302,7 +2570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2318,7 +2587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2332,7 +2602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2346,15 +2617,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2368,7 +2642,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2383,7 +2658,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2395,7 +2671,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2413,7 +2690,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2426,11 +2704,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2443,11 +2723,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2460,37 +2742,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -2506,7 +2799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2518,7 +2812,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2534,7 +2829,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2547,11 +2843,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2564,15 +2862,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2586,7 +2888,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2598,7 +2901,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2610,7 +2914,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2626,7 +2931,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2640,7 +2946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2654,15 +2961,18 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2676,7 +2986,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2691,7 +3002,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2703,7 +3015,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2721,7 +3034,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2734,11 +3048,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2751,11 +3067,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2768,38 +3086,49 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -2815,7 +3144,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2827,7 +3157,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2843,7 +3174,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2856,11 +3188,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2873,15 +3207,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2895,7 +3233,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2907,7 +3246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2919,7 +3259,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2935,7 +3276,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2949,7 +3291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2964,7 +3307,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2976,7 +3320,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2992,7 +3337,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3005,11 +3351,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3022,23 +3370,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3052,7 +3406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3067,7 +3422,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3079,7 +3435,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3097,7 +3454,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3110,11 +3468,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3127,11 +3487,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3144,37 +3506,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 13 }, { "expression": { @@ -3190,7 +3563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3202,7 +3576,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3218,7 +3593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3231,11 +3607,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3248,15 +3626,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3270,7 +3652,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3282,7 +3665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3294,7 +3678,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3310,7 +3695,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3324,7 +3710,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3339,7 +3726,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3351,7 +3739,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3367,7 +3756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3380,11 +3770,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3397,23 +3789,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3427,7 +3825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3442,7 +3841,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3454,7 +3854,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3472,7 +3873,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3485,11 +3887,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3502,11 +3906,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3519,41 +3925,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -3564,7 +3979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3576,7 +3992,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3592,7 +4009,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3606,7 +4024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3621,7 +4040,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3633,7 +4053,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3649,7 +4070,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3662,11 +4084,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3679,23 +4103,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3709,7 +4139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3724,7 +4155,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3736,7 +4168,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3754,7 +4187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3767,11 +4201,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3784,11 +4220,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3801,32 +4239,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -3837,7 +4285,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3849,7 +4298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3865,7 +4315,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3879,7 +4330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3894,7 +4346,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3906,7 +4359,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3922,7 +4376,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3935,11 +4390,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3952,23 +4409,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3982,7 +4445,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3997,7 +4461,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4009,7 +4474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4027,7 +4493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4040,11 +4507,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4057,11 +4526,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4074,33 +4545,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -4111,7 +4591,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4123,7 +4604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4139,7 +4621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4153,7 +4636,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4168,7 +4652,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4180,7 +4665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4196,7 +4682,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4209,11 +4696,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4226,23 +4715,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4256,7 +4751,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4271,7 +4767,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4283,7 +4780,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4301,7 +4799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4314,11 +4813,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4331,11 +4832,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4348,34 +4851,43 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -4386,7 +4898,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4398,7 +4911,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4414,7 +4928,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4428,7 +4943,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4443,7 +4959,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4455,7 +4972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4471,7 +4989,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4484,11 +5003,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4501,23 +5022,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4531,7 +5058,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4546,7 +5074,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4558,7 +5087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4576,7 +5106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4589,11 +5120,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4606,11 +5139,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4623,33 +5158,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -4660,7 +5204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4672,7 +5217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4688,7 +5234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4702,7 +5249,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4717,7 +5265,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4729,7 +5278,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4745,7 +5295,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4758,11 +5309,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4775,23 +5328,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4805,7 +5364,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4820,7 +5380,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4832,7 +5393,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4850,7 +5412,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4863,11 +5426,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4880,11 +5445,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4897,33 +5464,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -4934,7 +5510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4946,7 +5523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4962,7 +5540,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4976,7 +5555,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4991,7 +5571,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5003,7 +5584,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5019,7 +5601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5032,11 +5615,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5049,23 +5634,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5079,7 +5670,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5097,7 +5689,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5110,11 +5703,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5127,11 +5722,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5144,26 +5741,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -5174,7 +5779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5186,7 +5792,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5202,7 +5809,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5216,7 +5824,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5231,7 +5840,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5243,7 +5853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5259,7 +5870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5272,11 +5884,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5289,23 +5903,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5319,7 +5939,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5337,7 +5958,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5350,11 +5972,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5367,11 +5991,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5384,27 +6010,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -5415,7 +6048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5427,7 +6061,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5443,7 +6078,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5457,7 +6093,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5472,7 +6109,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5484,7 +6122,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5500,7 +6139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5513,11 +6153,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5530,23 +6172,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5560,7 +6208,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5578,7 +6227,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5591,11 +6241,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5608,11 +6260,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5625,28 +6279,35 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -5657,7 +6318,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5669,7 +6331,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5685,7 +6348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5699,7 +6363,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5714,7 +6379,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5726,7 +6392,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5742,7 +6409,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5755,11 +6423,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5772,23 +6442,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5802,7 +6478,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5822,7 +6499,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5836,7 +6514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5851,7 +6530,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5863,7 +6543,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5879,7 +6560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5892,11 +6574,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5909,23 +6593,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -5938,11 +6628,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -5955,11 +6647,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -5972,27 +6666,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -6003,7 +6704,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6015,7 +6717,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6031,7 +6734,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6045,7 +6749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6060,7 +6765,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6072,7 +6778,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6088,7 +6795,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6101,11 +6809,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6118,23 +6828,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6148,7 +6864,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6168,7 +6885,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6182,7 +6900,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6197,7 +6916,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6209,7 +6929,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6225,7 +6946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6238,11 +6960,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6255,23 +6979,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6284,11 +7014,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6301,11 +7033,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6318,27 +7052,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -6349,7 +7090,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6361,7 +7103,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6381,7 +7124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6395,7 +7139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6410,7 +7155,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6422,7 +7168,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6438,7 +7185,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6451,11 +7199,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6468,23 +7218,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6497,11 +7253,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6514,11 +7272,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6531,20 +7291,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -6555,7 +7321,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6567,7 +7334,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6587,7 +7355,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6601,7 +7370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6616,7 +7386,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6628,7 +7399,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6644,7 +7416,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6657,11 +7430,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6674,23 +7449,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6703,11 +7484,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6720,11 +7503,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6737,21 +7522,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -6762,7 +7552,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6774,7 +7565,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6794,7 +7586,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6808,7 +7601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6823,7 +7617,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6835,7 +7630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6851,7 +7647,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6864,11 +7661,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6881,23 +7680,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6910,11 +7715,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6927,11 +7734,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -6944,22 +7753,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -6970,7 +7784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6982,7 +7797,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7002,7 +7818,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7016,7 +7833,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7031,7 +7849,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7043,7 +7862,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7059,7 +7879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7072,11 +7893,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7089,23 +7912,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -7118,11 +7947,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -7135,11 +7966,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -7152,21 +7985,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -7177,7 +8015,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7189,7 +8028,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7209,7 +8049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7223,7 +8064,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7238,7 +8080,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7250,7 +8093,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7266,7 +8110,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7279,11 +8124,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7296,23 +8143,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -7325,11 +8178,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -7342,11 +8197,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -7359,21 +8216,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -7384,7 +8246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7396,7 +8259,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7416,7 +8280,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7430,7 +8295,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7446,7 +8312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7459,11 +8326,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7476,17 +8345,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7499,11 +8372,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7516,11 +8391,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7533,20 +8410,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -7557,7 +8440,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7569,7 +8453,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7589,7 +8474,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7603,7 +8489,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7619,7 +8506,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7632,11 +8520,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7649,17 +8539,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7672,11 +8566,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7689,11 +8585,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7706,21 +8604,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -7731,7 +8634,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7743,7 +8647,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7763,7 +8668,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7777,7 +8683,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7793,7 +8700,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7806,11 +8714,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7823,17 +8733,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7846,11 +8760,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7863,11 +8779,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -7880,22 +8798,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -7906,7 +8829,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7918,7 +8842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7938,7 +8863,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7952,7 +8878,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7968,7 +8895,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7981,11 +8909,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7998,17 +8928,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -8021,11 +8955,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -8038,11 +8974,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -8055,21 +8993,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -8080,7 +9023,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8092,7 +9036,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8112,7 +9057,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8126,7 +9072,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8142,7 +9089,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8155,11 +9103,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8172,17 +9122,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -8195,11 +9149,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -8212,11 +9168,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -8229,21 +9187,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -8254,7 +9217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8266,7 +9230,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8288,7 +9253,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8301,11 +9267,13 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8318,11 +9286,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8335,11 +9305,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8352,11 +9324,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8369,24 +9343,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "done", + "numLeafNodes": 6 } ], "speed": 1.75, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/uhqo.json b/src/lib/runners/uhqo.json index 4019f94f8..285f76342 100644 --- a/src/lib/runners/uhqo.json +++ b/src/lib/runners/uhqo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -14,16 +12,18 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 6, - "shorthandNumberAfterConvert": "number" - } + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/uiwl.json b/src/lib/runners/uiwl.json index b5bc80b6d..f1ef59f52 100644 --- a/src/lib/runners/uiwl.json +++ b/src/lib/runners/uiwl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -47,7 +47,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -61,14 +62,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 }, { "expression": { @@ -85,7 +93,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -99,7 +108,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -115,7 +125,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -129,17 +140,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { "expression": { @@ -156,7 +171,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -170,7 +186,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -186,7 +203,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -200,21 +218,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -228,7 +248,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -242,12 +263,18 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -263,7 +290,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -277,19 +305,20 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -300,16 +329,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 - } + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/unxf.json b/src/lib/runners/unxf.json index 079f459be..3db190263 100644 --- a/src/lib/runners/unxf.json +++ b/src/lib/runners/unxf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "C", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -40,14 +40,20 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -62,7 +68,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -76,7 +83,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -87,17 +95,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -112,7 +124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +139,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -137,18 +151,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -163,7 +181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -177,7 +196,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -188,21 +208,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "B", "highlightType": "default", @@ -212,16 +234,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/uppk.json b/src/lib/runners/uppk.json index 80be917e1..8b6167b88 100644 --- a/src/lib/runners/uppk.json +++ b/src/lib/runners/uppk.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,31 +70,35 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncArg", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "showFuncArg", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/uvmv.json b/src/lib/runners/uvmv.json index 12f757d52..86002b7f7 100644 --- a/src/lib/runners/uvmv.json +++ b/src/lib/runners/uvmv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "m", @@ -54,22 +56,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/uwma.json b/src/lib/runners/uwma.json index 25fa81f98..32f100ed5 100644 --- a/src/lib/runners/uwma.json +++ b/src/lib/runners/uwma.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,25 +69,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -98,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +121,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -123,22 +133,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/uwyn.json b/src/lib/runners/uwyn.json index 4d658762c..5aa58c40d 100644 --- a/src/lib/runners/uwyn.json +++ b/src/lib/runners/uwyn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -18,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -55,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -69,11 +70,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -87,11 +90,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -106,7 +111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -122,7 +128,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -135,11 +142,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -153,7 +162,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -165,7 +175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -180,7 +191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -194,7 +206,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -213,7 +226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -227,11 +241,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -244,11 +260,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -262,23 +280,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -293,7 +318,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -309,7 +335,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -322,11 +349,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -340,7 +369,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -352,7 +382,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -367,7 +398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -381,7 +413,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -400,7 +433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -414,11 +448,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -431,11 +467,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -449,31 +487,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -487,13 +534,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -507,16 +557,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "arg": { "type": "conditional", @@ -532,7 +586,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -546,7 +601,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -569,7 +625,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -583,11 +640,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -601,11 +660,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -620,7 +681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -636,7 +698,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -649,11 +712,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -667,7 +732,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -679,7 +745,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -694,7 +761,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -708,7 +776,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -727,7 +796,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -741,11 +811,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -758,11 +830,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -776,23 +850,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -807,7 +888,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -823,7 +905,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -836,11 +919,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -854,7 +939,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -866,7 +952,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -881,7 +968,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -895,7 +983,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -914,7 +1003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -928,11 +1018,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -945,11 +1037,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -963,31 +1057,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1001,13 +1104,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1021,17 +1127,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "falseCaseActive", "expression": { "arg": { "type": "conditional", @@ -1047,7 +1156,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1061,7 +1171,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1084,7 +1195,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1098,11 +1210,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1116,11 +1230,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1135,7 +1251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1151,7 +1268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1164,11 +1282,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1182,7 +1302,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1194,7 +1315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1209,7 +1331,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1223,7 +1346,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1242,7 +1366,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1256,11 +1381,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1273,11 +1400,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1291,23 +1420,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1322,7 +1458,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1338,7 +1475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1351,11 +1489,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1369,7 +1509,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1381,7 +1522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1396,7 +1538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1410,7 +1553,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1429,7 +1573,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1443,11 +1588,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1460,11 +1607,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1478,31 +1627,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1516,13 +1674,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -1536,17 +1697,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "falseCaseActive", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -1568,7 +1732,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1582,11 +1747,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1600,11 +1767,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1619,7 +1788,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1635,7 +1805,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1648,11 +1819,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1666,7 +1839,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1678,7 +1852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1693,7 +1868,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1707,7 +1883,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1726,7 +1903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1740,11 +1918,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1757,11 +1937,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1775,23 +1957,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1806,7 +1995,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1822,7 +2012,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1835,11 +2026,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1853,7 +2046,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1865,7 +2059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1880,7 +2075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1894,7 +2090,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1913,7 +2110,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1927,11 +2125,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1944,11 +2144,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1962,31 +2164,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2000,11 +2211,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2018,16 +2231,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -2049,7 +2266,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2063,11 +2281,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2081,11 +2301,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2100,7 +2322,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2116,7 +2339,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2129,11 +2353,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2147,7 +2373,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2159,7 +2386,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2174,7 +2402,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2188,7 +2417,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2207,7 +2437,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2221,11 +2452,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2238,11 +2471,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2256,23 +2491,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2287,7 +2529,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2303,7 +2546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2316,11 +2560,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2334,7 +2580,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2346,7 +2593,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2361,7 +2609,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2375,7 +2624,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2394,7 +2644,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2408,11 +2659,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2425,11 +2678,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2443,31 +2698,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2481,11 +2745,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2499,17 +2765,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -2531,7 +2800,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2545,11 +2815,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2563,11 +2835,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2582,7 +2856,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2598,7 +2873,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2611,11 +2887,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2629,7 +2907,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2641,7 +2920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2656,7 +2936,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2670,7 +2951,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2689,7 +2971,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2703,11 +2986,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2720,11 +3005,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2738,23 +3025,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2769,7 +3063,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2785,7 +3080,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2798,11 +3094,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2816,7 +3114,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2828,7 +3127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2843,7 +3143,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2857,7 +3158,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2876,7 +3178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2890,11 +3193,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2907,11 +3212,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2925,31 +3232,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "needsAlphaConvert", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2963,11 +3279,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -2981,17 +3299,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 3 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -3013,7 +3334,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3027,11 +3349,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3045,11 +3369,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3064,7 +3390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3080,7 +3407,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3093,11 +3421,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3111,7 +3441,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3123,7 +3454,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3138,7 +3470,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3152,7 +3485,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3171,7 +3505,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3185,11 +3520,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3202,11 +3539,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3220,23 +3559,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3251,7 +3597,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3267,7 +3614,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3280,11 +3628,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3298,7 +3648,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3310,7 +3661,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3325,7 +3677,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3339,7 +3692,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3358,7 +3712,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3372,11 +3727,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3389,11 +3746,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3407,31 +3766,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3445,11 +3813,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3463,17 +3833,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 3 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -3495,7 +3868,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3509,11 +3883,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3527,11 +3903,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3546,7 +3924,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3562,7 +3941,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3575,11 +3955,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3593,7 +3975,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3605,7 +3988,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3620,7 +4004,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3634,7 +4019,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3653,7 +4039,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3667,11 +4054,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3684,11 +4073,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3702,23 +4093,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3733,7 +4131,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3749,7 +4148,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3762,11 +4162,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3780,7 +4182,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3792,7 +4195,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3807,7 +4211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3821,7 +4226,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3840,7 +4246,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3854,11 +4261,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -3871,11 +4280,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3889,31 +4300,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3927,11 +4347,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -3945,18 +4367,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -3978,7 +4403,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3992,11 +4418,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4010,11 +4438,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4029,7 +4459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4045,7 +4476,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4058,11 +4490,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4076,7 +4510,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4088,7 +4523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4103,7 +4539,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4117,7 +4554,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4136,7 +4574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4150,11 +4589,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4167,11 +4608,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4185,23 +4628,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4216,7 +4666,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4233,7 +4684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4249,7 +4701,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4262,11 +4715,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4280,7 +4735,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4292,7 +4748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4307,7 +4764,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4321,7 +4779,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4340,7 +4799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4354,11 +4814,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4371,11 +4833,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4389,23 +4853,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4419,7 +4890,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4435,7 +4907,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4448,11 +4921,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4466,7 +4941,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4478,7 +4954,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4493,7 +4970,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4507,7 +4985,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4526,7 +5005,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4540,11 +5020,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4557,11 +5039,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4575,27 +5059,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4609,7 +5101,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4621,7 +5114,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4636,7 +5130,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4650,7 +5145,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4669,7 +5165,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4683,11 +5180,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -4700,11 +5199,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4718,31 +5219,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -4756,11 +5266,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -4774,17 +5286,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 35 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -4806,7 +5321,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4820,11 +5336,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4838,11 +5356,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4857,7 +5377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4873,7 +5394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4886,11 +5408,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4904,7 +5428,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4916,7 +5441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4931,7 +5457,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4945,7 +5472,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4964,7 +5492,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4978,11 +5507,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4995,11 +5526,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5013,23 +5546,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5044,7 +5584,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5061,7 +5602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5077,7 +5619,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5090,11 +5633,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5108,7 +5653,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5120,7 +5666,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5135,7 +5682,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5149,7 +5697,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5168,7 +5717,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5182,11 +5732,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5199,11 +5751,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5217,23 +5771,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5247,7 +5808,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5263,7 +5825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5276,11 +5839,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5294,7 +5859,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5306,7 +5872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5321,7 +5888,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5335,7 +5903,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5354,7 +5923,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5368,11 +5938,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5385,11 +5957,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5403,27 +5977,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5437,7 +6019,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5449,7 +6032,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5464,7 +6048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5478,7 +6063,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5497,7 +6083,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5511,11 +6098,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -5528,11 +6117,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5546,31 +6137,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -5584,11 +6184,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -5602,17 +6204,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 35 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -5634,7 +6239,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5648,11 +6254,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5666,11 +6274,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5687,7 +6297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5703,7 +6314,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5716,11 +6328,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5734,7 +6348,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5746,7 +6361,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5761,7 +6377,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5775,7 +6392,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5794,7 +6412,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5808,11 +6427,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5825,11 +6446,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5843,23 +6466,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5873,7 +6503,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5889,7 +6520,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5902,11 +6534,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5920,7 +6554,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5932,7 +6567,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5947,7 +6583,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5961,7 +6598,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5980,7 +6618,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5994,11 +6633,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6011,11 +6652,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6029,27 +6672,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6064,7 +6715,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6076,7 +6728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6091,7 +6744,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6105,7 +6759,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6124,7 +6779,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6138,11 +6794,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6155,11 +6813,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6173,25 +6833,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6205,11 +6872,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6223,16 +6892,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -6254,7 +6927,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6268,11 +6942,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6286,11 +6962,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6307,7 +6985,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6323,7 +7002,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6336,11 +7016,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6354,7 +7036,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6366,7 +7049,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6381,7 +7065,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6395,7 +7080,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6414,7 +7100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6428,11 +7115,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6445,11 +7134,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6463,23 +7154,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6493,7 +7191,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6509,7 +7208,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6522,11 +7222,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6540,7 +7242,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6552,7 +7255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6567,7 +7271,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6581,7 +7286,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6600,7 +7306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6614,11 +7321,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6631,11 +7340,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6649,27 +7360,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6684,7 +7403,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6696,7 +7416,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6711,7 +7432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6725,7 +7447,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6744,7 +7467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6758,11 +7482,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -6775,11 +7501,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6793,25 +7521,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6825,11 +7560,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -6843,17 +7580,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -6875,7 +7615,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6889,11 +7630,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6907,11 +7650,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6928,7 +7673,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6944,7 +7690,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6957,11 +7704,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6975,7 +7724,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6987,7 +7737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7002,7 +7753,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7016,7 +7768,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7035,7 +7788,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7049,11 +7803,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7066,11 +7822,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7084,23 +7842,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7114,7 +7879,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7130,7 +7896,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7143,11 +7910,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7161,7 +7930,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7173,7 +7943,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7188,7 +7959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7202,7 +7974,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7221,7 +7994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7235,11 +8009,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7252,11 +8028,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7270,27 +8048,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7305,7 +8091,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7317,7 +8104,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7332,7 +8120,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7346,7 +8135,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7365,7 +8155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7379,11 +8170,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7396,11 +8189,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7414,25 +8209,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7446,11 +8248,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -7464,18 +8268,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -7497,7 +8304,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7511,11 +8319,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7529,11 +8339,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7550,7 +8362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7566,7 +8379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7579,11 +8393,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7597,7 +8413,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7609,7 +8426,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7624,7 +8442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7638,7 +8457,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7657,7 +8477,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7671,11 +8492,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7688,11 +8511,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7706,23 +8531,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7736,7 +8568,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7752,7 +8585,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7765,11 +8599,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7783,7 +8619,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7795,7 +8632,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7810,7 +8648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7824,7 +8663,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7843,7 +8683,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7857,11 +8698,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7874,11 +8717,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7892,27 +8737,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7927,7 +8780,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7939,7 +8793,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7954,7 +8809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7968,7 +8824,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7987,7 +8844,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8001,11 +8859,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8020,7 +8880,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8036,7 +8897,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8049,11 +8911,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8067,7 +8931,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8079,7 +8944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8094,7 +8960,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8108,7 +8975,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8127,7 +8995,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8141,11 +9010,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8158,11 +9029,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8176,23 +9049,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8207,7 +9087,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8223,7 +9104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8236,11 +9118,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8254,7 +9138,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8266,7 +9151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8281,7 +9167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8295,7 +9182,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8314,7 +9202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8328,11 +9217,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8345,11 +9236,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8363,31 +9256,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -8401,25 +9303,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -8433,11 +9342,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -8451,17 +9362,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 42 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -8483,7 +9397,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8497,11 +9412,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8515,11 +9432,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8536,7 +9455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8552,7 +9472,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8565,11 +9486,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8583,7 +9506,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8595,7 +9519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8610,7 +9535,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8624,7 +9550,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8643,7 +9570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8657,11 +9585,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8674,11 +9604,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8692,23 +9624,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8722,7 +9661,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8738,7 +9678,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8751,11 +9692,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8769,7 +9712,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8781,7 +9725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8796,7 +9741,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8810,7 +9756,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8829,7 +9776,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8843,11 +9791,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8860,11 +9810,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8878,27 +9830,35 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8913,7 +9873,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8925,7 +9886,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8940,7 +9902,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8954,7 +9917,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8973,7 +9937,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8987,11 +9952,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9006,7 +9973,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9022,7 +9990,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9035,11 +10004,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9053,7 +10024,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9065,7 +10037,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9080,7 +10053,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9094,7 +10068,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9113,7 +10088,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9127,11 +10103,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9144,11 +10122,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9162,23 +10142,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9193,7 +10180,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9209,7 +10197,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9222,11 +10211,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9240,7 +10231,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9252,7 +10244,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9267,7 +10260,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9281,7 +10275,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9300,7 +10295,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9314,11 +10310,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9331,11 +10329,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9349,31 +10349,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -9387,25 +10396,32 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -9419,11 +10435,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "func": { "name": "shorthandFunc", @@ -9437,17 +10455,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 42 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -9469,7 +10490,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9483,11 +10505,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9501,11 +10525,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9519,7 +10545,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9534,7 +10561,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9548,7 +10576,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9567,7 +10596,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9581,11 +10611,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9600,7 +10632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9616,7 +10649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9629,11 +10663,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9647,7 +10683,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9659,7 +10696,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9674,7 +10712,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9688,7 +10727,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9707,7 +10747,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9721,11 +10762,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9738,11 +10781,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9756,23 +10801,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9787,7 +10839,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9803,7 +10856,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9816,11 +10870,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9834,7 +10890,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9846,7 +10903,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9861,7 +10919,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9875,7 +10934,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9894,7 +10954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9908,11 +10969,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9925,11 +10988,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9943,31 +11008,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -9981,19 +11055,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10007,11 +11086,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10025,16 +11106,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -10056,7 +11141,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10070,11 +11156,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10088,11 +11176,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10106,7 +11196,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10121,7 +11212,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10135,7 +11227,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10154,7 +11247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10168,11 +11262,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10187,7 +11283,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10203,7 +11300,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10216,11 +11314,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10234,7 +11334,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10246,7 +11347,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10261,7 +11363,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10275,7 +11378,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10294,7 +11398,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10308,11 +11413,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -10325,11 +11432,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10343,23 +11452,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10374,7 +11490,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10390,7 +11507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10403,11 +11521,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10421,7 +11541,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10433,7 +11554,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10448,7 +11570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10462,7 +11585,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10481,7 +11605,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10495,11 +11620,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -10512,11 +11639,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10530,31 +11659,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -10568,19 +11706,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10594,11 +11737,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -10612,17 +11757,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -10644,7 +11792,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10658,11 +11807,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10676,11 +11827,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10694,7 +11847,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10709,7 +11863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10723,7 +11878,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10742,7 +11898,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10756,11 +11913,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10775,7 +11934,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10791,7 +11951,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10804,11 +11965,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10822,7 +11985,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10834,7 +11998,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10849,7 +12014,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10863,7 +12029,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10882,7 +12049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10896,11 +12064,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -10913,11 +12083,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10931,23 +12103,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10962,7 +12141,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10978,7 +12158,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10991,11 +12172,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11009,7 +12192,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11021,7 +12205,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11036,7 +12221,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11050,7 +12236,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11069,7 +12256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11083,11 +12271,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -11100,11 +12290,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11118,31 +12310,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11156,19 +12357,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11182,11 +12388,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11200,18 +12408,21 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -11233,7 +12444,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11247,11 +12459,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11265,11 +12479,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11283,7 +12499,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11304,7 +12521,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11318,11 +12536,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11336,11 +12556,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11354,7 +12576,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11378,7 +12601,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11392,11 +12616,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11410,11 +12636,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11428,11 +12656,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11447,7 +12677,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11463,7 +12694,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11476,11 +12708,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11494,7 +12728,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11506,7 +12741,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11521,7 +12757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11535,7 +12772,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11554,7 +12792,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11568,11 +12807,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -11585,11 +12826,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11603,23 +12846,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11634,7 +12884,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11650,7 +12901,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11663,11 +12915,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11681,7 +12935,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11693,7 +12948,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11708,7 +12964,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11722,7 +12979,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11741,7 +12999,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11755,11 +13014,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -11772,11 +13033,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11790,31 +13053,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -11828,19 +13100,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11854,11 +13131,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -11872,17 +13151,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -11904,7 +13186,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11918,11 +13201,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11936,11 +13221,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11954,7 +13241,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11975,7 +13263,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11989,11 +13278,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12007,11 +13298,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12025,7 +13318,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12049,7 +13343,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12063,11 +13358,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12081,11 +13378,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12099,11 +13398,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12118,7 +13419,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12134,7 +13436,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12147,11 +13450,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12165,7 +13470,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12177,7 +13483,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12192,7 +13499,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12206,7 +13514,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12225,7 +13534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12239,11 +13549,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12256,11 +13568,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12274,23 +13588,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -12305,7 +13626,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12321,7 +13643,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12334,11 +13657,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12352,7 +13677,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12364,7 +13690,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12379,7 +13706,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12393,7 +13721,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12412,7 +13741,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12426,11 +13756,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12443,11 +13775,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12461,31 +13795,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -12499,19 +13842,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -12525,11 +13873,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "func": { "name": "shorthandFunc", @@ -12543,17 +13893,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -12575,7 +13928,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12589,11 +13943,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12607,11 +13963,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12625,7 +13983,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12651,7 +14010,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12665,11 +14025,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12683,11 +14045,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12701,11 +14065,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12720,7 +14086,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12736,7 +14103,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12749,11 +14117,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12767,7 +14137,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12779,7 +14150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12794,7 +14166,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12808,7 +14181,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12827,7 +14201,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12841,11 +14216,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12858,11 +14235,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12876,23 +14255,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -12907,7 +14293,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12923,7 +14310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12936,11 +14324,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12954,7 +14344,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12966,7 +14357,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12981,7 +14373,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12995,7 +14388,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13014,7 +14408,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13028,11 +14423,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -13045,11 +14442,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13063,31 +14462,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -13101,13 +14509,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -13121,11 +14532,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -13139,16 +14552,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -13170,7 +14587,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13184,11 +14602,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13202,11 +14622,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13220,7 +14642,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13246,7 +14669,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13260,11 +14684,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13278,11 +14704,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13296,11 +14724,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13315,7 +14745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13331,7 +14762,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13344,11 +14776,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13362,7 +14796,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13374,7 +14809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13389,7 +14825,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13403,7 +14840,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13422,7 +14860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13436,11 +14875,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -13453,11 +14894,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13471,23 +14914,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -13502,7 +14952,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13518,7 +14969,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13531,11 +14983,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13549,7 +15003,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13561,7 +15016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13576,7 +15032,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13590,7 +15047,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13609,7 +15067,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13623,11 +15082,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -13640,11 +15101,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13658,31 +15121,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -13696,13 +15168,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -13716,11 +15191,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -13734,17 +15211,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 4 + "previouslyChangedExpressionState": "active", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -13764,7 +15244,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13778,11 +15259,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13796,7 +15279,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13822,7 +15306,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13836,11 +15321,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13854,11 +15341,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13872,11 +15361,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13891,7 +15382,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13907,7 +15399,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13920,11 +15413,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13938,7 +15433,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13950,7 +15446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13965,7 +15462,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13979,7 +15477,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13998,7 +15497,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14012,11 +15512,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14029,11 +15531,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14047,23 +15551,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -14078,7 +15589,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14094,7 +15606,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14107,11 +15620,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14125,7 +15640,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14137,7 +15653,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14152,7 +15669,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14166,7 +15684,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14185,7 +15704,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14199,11 +15719,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14216,11 +15738,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14234,31 +15758,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14272,13 +15805,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14292,11 +15828,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14310,16 +15848,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -14339,7 +15881,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14353,11 +15896,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14371,7 +15916,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14397,7 +15943,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14411,11 +15958,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14429,11 +15978,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14447,11 +15998,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14466,7 +16019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14482,7 +16036,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14495,11 +16050,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14513,7 +16070,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14525,7 +16083,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14540,7 +16099,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14554,7 +16114,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14573,7 +16134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14587,11 +16149,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14604,11 +16168,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14622,23 +16188,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -14653,7 +16226,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14669,7 +16243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14682,11 +16257,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14700,7 +16277,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14712,7 +16290,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14727,7 +16306,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14741,7 +16321,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14760,7 +16341,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14774,11 +16356,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14791,11 +16375,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14809,31 +16395,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14847,13 +16442,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14867,11 +16465,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -14885,17 +16485,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "activePriority": 3 + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -14912,7 +16515,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14926,7 +16530,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14952,7 +16557,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14966,11 +16572,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14984,11 +16592,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15002,11 +16612,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15021,7 +16633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15037,7 +16650,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15050,11 +16664,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15068,7 +16684,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15080,7 +16697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15095,7 +16713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15109,7 +16728,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15128,7 +16748,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15142,11 +16763,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15159,11 +16782,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15177,23 +16802,30 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -15208,7 +16840,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15224,7 +16857,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15237,11 +16871,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15255,7 +16891,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15267,7 +16904,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15282,7 +16920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15296,7 +16935,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15315,7 +16955,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15329,11 +16970,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15346,11 +16989,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15364,31 +17009,40 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15402,13 +17056,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15422,11 +17079,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandFunc", @@ -15440,20 +17099,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 25 } ], "speed": 1.75, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vcqp.json b/src/lib/runners/vcqp.json index ef81e4d79..7fea1db06 100644 --- a/src/lib/runners/vcqp.json +++ b/src/lib/runners/vcqp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -81,15 +84,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -102,27 +108,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" - } + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vdhd.json b/src/lib/runners/vdhd.json index 7397a66e2..12520d43f 100644 --- a/src/lib/runners/vdhd.json +++ b/src/lib/runners/vdhd.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,25 +69,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -98,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -127,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -139,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -150,26 +162,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -182,7 +200,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -196,7 +215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -211,7 +231,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -223,7 +244,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -234,25 +256,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -265,7 +293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -279,7 +308,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -294,7 +324,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -306,7 +337,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -317,25 +349,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -348,7 +386,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -362,7 +401,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -373,14 +413,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -395,7 +442,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -409,7 +457,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -420,17 +469,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -445,7 +498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -459,7 +513,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -470,17 +525,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -495,7 +554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -509,7 +569,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -520,18 +581,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -546,7 +611,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -560,7 +626,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -571,21 +638,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "c", "highlightType": "default", @@ -595,16 +664,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/veft.json b/src/lib/runners/veft.json index 90ca19cba..78c28ddc5 100644 --- a/src/lib/runners/veft.json +++ b/src/lib/runners/veft.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vfdw.json b/src/lib/runners/vfdw.json index 48a9d39b7..7794d4564 100644 --- a/src/lib/runners/vfdw.json +++ b/src/lib/runners/vfdw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -96,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -150,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -164,15 +176,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -185,27 +200,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "type": "function", - "meta": "plusOneEffect" + "meta": "plusOneEffect", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -216,16 +238,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 - } + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/vhte.json b/src/lib/runners/vhte.json index 9d7e05310..98df4a422 100644 --- a/src/lib/runners/vhte.json +++ b/src/lib/runners/vhte.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vilr.json b/src/lib/runners/vilr.json index 27155bad7..d5992001e 100644 --- a/src/lib/runners/vilr.json +++ b/src/lib/runners/vilr.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,31 +70,35 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vlhb.json b/src/lib/runners/vlhb.json index 5c41c8ae0..79719975e 100644 --- a/src/lib/runners/vlhb.json +++ b/src/lib/runners/vlhb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "blankNumber", @@ -146,32 +158,38 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "condition" + "shorthandNumberAfterConvert": "condition", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vlob.json b/src/lib/runners/vlob.json index b82745324..d9eae3a1f 100644 --- a/src/lib/runners/vlob.json +++ b/src/lib/runners/vlob.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -56,11 +57,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -73,11 +76,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -90,20 +95,25 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -114,16 +124,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 - } + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/vmkg.json b/src/lib/runners/vmkg.json index f7d503179..f8ee0089d 100644 --- a/src/lib/runners/vmkg.json +++ b/src/lib/runners/vmkg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/voeb.json b/src/lib/runners/voeb.json index 413892d34..efc59c116 100644 --- a/src/lib/runners/voeb.json +++ b/src/lib/runners/voeb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,16 +37,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vowa.json b/src/lib/runners/vowa.json index 2185e11dc..5db893dbb 100644 --- a/src/lib/runners/vowa.json +++ b/src/lib/runners/vowa.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vozu.json b/src/lib/runners/vozu.json index d9c4f4e96..df06b808e 100644 --- a/src/lib/runners/vozu.json +++ b/src/lib/runners/vozu.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -43,21 +45,22 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vqwp.json b/src/lib/runners/vqwp.json index 6b0a08e13..4c1b6aa77 100644 --- a/src/lib/runners/vqwp.json +++ b/src/lib/runners/vqwp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vqyl.json b/src/lib/runners/vqyl.json index 5c3e876af..4b1ecae60 100644 --- a/src/lib/runners/vqyl.json +++ b/src/lib/runners/vqyl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binaryFirst" + "shorthandNumberAfterConvert": "binaryFirst", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binarySecond" + "shorthandNumberAfterConvert": "binarySecond", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +72,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -96,7 +100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -125,11 +131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,40 +151,50 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vsvt.json b/src/lib/runners/vsvt.json index fee037942..675a3512a 100644 --- a/src/lib/runners/vsvt.json +++ b/src/lib/runners/vsvt.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -13,16 +11,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 8 - } + "shorthandNumber": 8, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vvjn.json b/src/lib/runners/vvjn.json index 9adcc0c43..7520333f6 100644 --- a/src/lib/runners/vvjn.json +++ b/src/lib/runners/vvjn.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "l", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/vwvb.json b/src/lib/runners/vwvb.json index 4b90fa194..7f07dbd7c 100644 --- a/src/lib/runners/vwvb.json +++ b/src/lib/runners/vwvb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumberYellow", "highlightType": "default", @@ -12,16 +10,18 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wcer.json b/src/lib/runners/wcer.json index 6c67b9ed4..f91b0897d 100644 --- a/src/lib/runners/wcer.json +++ b/src/lib/runners/wcer.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -57,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -68,28 +70,34 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wenx.json b/src/lib/runners/wenx.json index 1209b0116..30918f929 100644 --- a/src/lib/runners/wenx.json +++ b/src/lib/runners/wenx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31,11 +30,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -50,7 +51,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +67,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -77,7 +80,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -88,11 +92,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -107,7 +114,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -119,7 +127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -131,7 +140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -142,13 +152,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -164,32 +178,38 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/weoz.json b/src/lib/runners/weoz.json index 6f09b45be..098cdfd6f 100644 --- a/src/lib/runners/weoz.json +++ b/src/lib/runners/weoz.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -24,18 +23,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wgby.json b/src/lib/runners/wgby.json index ac8a51c04..a8b7090d7 100644 --- a/src/lib/runners/wgby.json +++ b/src/lib/runners/wgby.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -60,7 +61,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -72,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -84,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -114,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -128,15 +134,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -149,21 +158,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -178,7 +193,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -193,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -205,7 +222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -216,11 +234,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -235,7 +256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -247,7 +269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -259,7 +282,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -270,13 +294,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -292,38 +320,46 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wjwu.json b/src/lib/runners/wjwu.json index 20a4ea6d4..0861548a6 100644 --- a/src/lib/runners/wjwu.json +++ b/src/lib/runners/wjwu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -20,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,11 +33,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -51,11 +52,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -69,20 +72,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wopl.json b/src/lib/runners/wopl.json index d7d91c459..ff02c5816 100644 --- a/src/lib/runners/wopl.json +++ b/src/lib/runners/wopl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -71,24 +74,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wqml.json b/src/lib/runners/wqml.json index 9e576b128..64f88496f 100644 --- a/src/lib/runners/wqml.json +++ b/src/lib/runners/wqml.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 } @@ -89,8 +99,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wtup.json b/src/lib/runners/wtup.json index dbb9fe1c5..fcb7690cd 100644 --- a/src/lib/runners/wtup.json +++ b/src/lib/runners/wtup.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -27,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -43,7 +44,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -54,22 +56,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wunw.json b/src/lib/runners/wunw.json index 8a4fcdec0..bd88e2a58 100644 --- a/src/lib/runners/wunw.json +++ b/src/lib/runners/wunw.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,17 +40,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -63,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -88,17 +96,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -113,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -127,7 +140,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -138,18 +152,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -164,7 +182,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -178,7 +197,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -189,17 +209,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -214,7 +238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -228,7 +253,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -239,21 +265,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "b", "highlightType": "default", @@ -263,16 +291,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wwtl.json b/src/lib/runners/wwtl.json index 69cc6a5f4..699832b7c 100644 --- a/src/lib/runners/wwtl.json +++ b/src/lib/runners/wwtl.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -67,25 +69,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -98,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -127,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -139,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -150,20 +162,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 } @@ -172,8 +192,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/wzqv.json b/src/lib/runners/wzqv.json index 5c33bec32..531f00816 100644 --- a/src/lib/runners/wzqv.json +++ b/src/lib/runners/wzqv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -97,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -109,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -127,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -140,11 +150,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -157,11 +169,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -174,15 +188,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -197,7 +215,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -221,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -233,7 +254,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -247,7 +269,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -263,7 +286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -276,11 +300,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -294,36 +320,46 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -337,7 +373,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -349,7 +386,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -365,7 +403,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -378,11 +417,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -395,15 +436,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -418,7 +463,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -430,7 +476,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -448,7 +495,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -461,11 +509,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -478,11 +528,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -495,15 +547,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -518,7 +574,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -530,7 +587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -542,7 +600,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -554,7 +613,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -568,7 +628,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -584,7 +645,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -597,11 +659,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -615,37 +679,47 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 11, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -659,7 +733,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -671,7 +746,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -687,7 +763,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -700,11 +777,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -717,15 +796,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -740,7 +823,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -752,7 +836,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -770,7 +855,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -783,11 +869,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -800,11 +888,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -817,15 +907,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -840,7 +934,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -852,7 +947,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -864,7 +960,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -876,7 +973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -890,7 +988,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -906,7 +1005,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -919,11 +1019,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -937,38 +1039,48 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, + "numLeafNodes": 11, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -982,7 +1094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -994,7 +1107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1010,7 +1124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1023,11 +1138,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1040,15 +1157,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1063,7 +1184,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1075,7 +1197,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1093,7 +1216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1106,11 +1230,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1123,11 +1249,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1140,15 +1268,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1163,7 +1295,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1175,7 +1308,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1187,7 +1321,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1199,7 +1334,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1213,7 +1349,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1229,7 +1366,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1242,11 +1380,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1261,7 +1401,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1273,7 +1414,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1291,7 +1433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1304,11 +1447,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1321,11 +1466,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1338,45 +1485,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 6 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 6 }, + "numLeafNodes": 14, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -1390,7 +1550,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1402,7 +1563,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1418,7 +1580,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1431,11 +1594,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1448,15 +1613,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1471,7 +1640,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1483,7 +1653,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1501,7 +1672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1514,11 +1686,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1531,11 +1705,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1548,15 +1724,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1571,7 +1751,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1583,7 +1764,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1595,7 +1777,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1607,7 +1790,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1621,7 +1805,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1637,7 +1822,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1650,11 +1836,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1669,7 +1857,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1681,7 +1870,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1699,7 +1889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1712,11 +1903,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1729,11 +1922,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1746,45 +1941,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 6 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 6 }, + "numLeafNodes": 14, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -1798,7 +2006,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1810,7 +2019,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1826,7 +2036,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1839,11 +2050,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1856,15 +2069,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1878,7 +2095,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1890,7 +2108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1902,7 +2121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1916,7 +2136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1932,7 +2153,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1945,11 +2167,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1964,7 +2188,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1976,7 +2201,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1994,7 +2220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2007,11 +2234,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2024,11 +2253,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2041,34 +2272,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -2084,7 +2329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2096,7 +2342,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2112,7 +2359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2125,11 +2373,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2142,15 +2392,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2164,7 +2418,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2176,7 +2431,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2188,7 +2444,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2202,7 +2459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2218,7 +2476,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2231,11 +2490,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2250,7 +2511,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2262,7 +2524,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2280,7 +2543,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2293,11 +2557,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2310,11 +2576,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2327,37 +2595,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 10 }, { "expression": { @@ -2373,7 +2652,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2385,7 +2665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2401,7 +2682,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2414,11 +2696,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2431,15 +2715,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2453,7 +2741,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2465,7 +2754,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2477,7 +2767,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2491,7 +2782,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2507,7 +2799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2520,11 +2813,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2539,7 +2834,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2551,7 +2847,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2569,7 +2866,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2582,11 +2880,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2599,11 +2899,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2616,38 +2918,49 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 10 }, { "expression": { @@ -2663,7 +2976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2675,7 +2989,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2691,7 +3006,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2704,11 +3020,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2721,15 +3039,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2743,7 +3065,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2755,7 +3078,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2767,7 +3091,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2781,7 +3106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2797,7 +3123,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2811,7 +3138,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2823,7 +3151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2839,7 +3168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2852,11 +3182,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2869,19 +3201,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2896,7 +3233,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2908,7 +3246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2926,7 +3265,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2939,11 +3279,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2956,11 +3298,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2973,37 +3317,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 12 }, { "expression": { @@ -3019,7 +3374,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3031,7 +3387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3047,7 +3404,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3060,11 +3418,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3077,15 +3437,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3099,7 +3463,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3111,7 +3476,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3123,7 +3489,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3137,7 +3504,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3153,7 +3521,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3167,7 +3536,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3179,7 +3549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3195,7 +3566,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3208,11 +3580,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3225,19 +3599,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3252,7 +3631,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3264,7 +3644,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3282,7 +3663,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3295,11 +3677,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3312,11 +3696,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3329,41 +3715,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -3374,7 +3769,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3386,7 +3782,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3400,7 +3797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3416,7 +3814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3430,7 +3829,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3442,7 +3842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3458,7 +3859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3471,11 +3873,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3488,19 +3892,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3515,7 +3924,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3527,7 +3937,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3545,7 +3956,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3558,11 +3970,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3575,11 +3989,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3592,32 +4008,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -3628,7 +4054,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3640,7 +4067,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3654,7 +4082,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3670,7 +4099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3684,7 +4114,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3696,7 +4127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3712,7 +4144,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3725,11 +4158,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3742,19 +4177,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3769,7 +4209,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3781,7 +4222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3799,7 +4241,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3812,11 +4255,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3829,11 +4274,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3846,33 +4293,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -3883,7 +4339,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3895,7 +4352,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3909,7 +4367,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3925,7 +4384,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3939,7 +4399,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3951,7 +4412,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3967,7 +4429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3980,11 +4443,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3997,19 +4462,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4024,7 +4494,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4036,7 +4507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4054,7 +4526,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4067,11 +4540,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4084,11 +4559,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4101,34 +4578,43 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -4139,7 +4625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4151,7 +4638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4165,7 +4653,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4181,7 +4670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4195,7 +4685,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4207,7 +4698,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4223,7 +4715,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4236,11 +4729,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4253,19 +4748,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4280,7 +4780,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4292,7 +4793,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4310,7 +4812,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4324,7 +4827,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4339,7 +4843,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4351,7 +4856,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4367,7 +4873,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4380,11 +4887,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4397,23 +4906,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4427,7 +4942,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4442,7 +4958,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4454,7 +4971,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4470,7 +4988,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4483,11 +5002,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4500,23 +5021,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4530,7 +5057,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4545,7 +5073,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4557,7 +5086,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4573,7 +5103,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4586,11 +5117,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4603,45 +5136,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 18 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -4652,7 +5198,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4664,7 +5211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4678,7 +5226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4694,7 +5243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4708,7 +5258,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4720,7 +5271,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4736,7 +5288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4749,11 +5302,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4766,19 +5321,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4793,7 +5353,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4805,7 +5366,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4823,7 +5385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4837,7 +5400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4852,7 +5416,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4864,7 +5429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4880,7 +5446,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4893,11 +5460,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4910,23 +5479,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4940,7 +5515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4955,7 +5531,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4967,7 +5544,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4983,7 +5561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4996,11 +5575,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5013,23 +5594,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5043,7 +5630,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5058,7 +5646,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5070,7 +5659,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5086,7 +5676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5099,11 +5690,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5116,45 +5709,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 18 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -5165,7 +5771,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5177,7 +5784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5191,7 +5799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5205,7 +5814,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5223,7 +5833,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5237,7 +5848,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5252,7 +5864,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5264,7 +5877,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5280,7 +5894,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5293,11 +5908,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5310,23 +5927,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5340,7 +5963,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5355,7 +5979,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5367,7 +5992,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5383,7 +6009,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5396,11 +6023,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5413,23 +6042,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5443,7 +6078,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5458,7 +6094,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5470,7 +6107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5486,7 +6124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5499,11 +6138,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5516,38 +6157,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 5 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -5558,7 +6211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5570,7 +6224,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5584,7 +6239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5598,7 +6254,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5616,7 +6273,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5630,7 +6288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5645,7 +6304,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5657,7 +6317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5673,7 +6334,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5686,11 +6348,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5703,23 +6367,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5733,7 +6403,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5748,7 +6419,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5760,7 +6432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5776,7 +6449,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5789,11 +6463,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5806,23 +6482,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5836,7 +6518,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5851,7 +6534,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5863,7 +6547,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5879,7 +6564,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5892,11 +6578,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5909,39 +6597,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -5952,7 +6651,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5964,7 +6664,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5978,7 +6679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5992,7 +6694,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6010,7 +6713,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6024,7 +6728,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6039,7 +6744,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6051,7 +6757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6067,7 +6774,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6080,11 +6788,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6097,23 +6807,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6127,7 +6843,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6142,7 +6859,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6154,7 +6872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6170,7 +6889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6183,11 +6903,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6200,23 +6922,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6230,7 +6958,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6245,7 +6974,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6257,7 +6987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6273,7 +7004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6286,11 +7018,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6303,40 +7037,51 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -6347,7 +7092,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6359,7 +7105,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6373,7 +7120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6387,7 +7135,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6405,7 +7154,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6419,7 +7169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6434,7 +7185,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6446,7 +7198,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6462,7 +7215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6475,11 +7229,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6492,23 +7248,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6522,7 +7284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6537,7 +7300,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6549,7 +7313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6565,7 +7330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6578,11 +7344,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6595,23 +7363,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6625,7 +7399,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6640,7 +7415,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6652,7 +7428,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6668,7 +7445,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6681,11 +7459,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6698,39 +7478,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -6741,7 +7532,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6753,7 +7545,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6767,7 +7560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6781,7 +7575,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6799,7 +7594,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6813,7 +7609,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6828,7 +7625,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6840,7 +7638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6856,7 +7655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6869,11 +7669,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6886,23 +7688,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6916,7 +7724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6931,7 +7740,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6943,7 +7753,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6959,7 +7770,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6972,11 +7784,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6989,23 +7803,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7019,7 +7839,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7034,7 +7855,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7046,7 +7868,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7062,7 +7885,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7075,11 +7899,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7092,39 +7918,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -7135,7 +7972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7147,7 +7985,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7165,7 +8004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7179,7 +8019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7194,7 +8035,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7206,7 +8048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7222,7 +8065,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7235,11 +8079,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7252,23 +8098,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7282,7 +8134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7297,7 +8150,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7309,7 +8163,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7325,7 +8180,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7338,11 +8194,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7355,23 +8213,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7385,7 +8249,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7400,7 +8265,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7412,7 +8278,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7428,7 +8295,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7441,11 +8309,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7458,32 +8328,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -7494,7 +8374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7506,7 +8387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7524,7 +8406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7538,7 +8421,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7553,7 +8437,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7565,7 +8450,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7581,7 +8467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7594,11 +8481,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7611,23 +8500,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7641,7 +8536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7656,7 +8552,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7668,7 +8565,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7684,7 +8582,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7697,11 +8596,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7714,23 +8615,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7744,7 +8651,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7759,7 +8667,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7771,7 +8680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7787,7 +8697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7800,11 +8711,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7817,33 +8730,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -7854,7 +8776,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7866,7 +8789,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7884,7 +8808,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7898,7 +8823,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7913,7 +8839,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7925,7 +8852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7941,7 +8869,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7954,11 +8883,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7971,23 +8902,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8001,7 +8938,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8016,7 +8954,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8028,7 +8967,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8044,7 +8984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8057,11 +8998,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8074,23 +9017,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8104,7 +9053,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8119,7 +9069,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8131,7 +9082,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8147,7 +9099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8160,11 +9113,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8177,34 +9132,43 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -8215,7 +9179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8227,7 +9192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8245,7 +9211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8259,7 +9226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8274,7 +9242,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8286,7 +9255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8302,7 +9272,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8315,11 +9286,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8332,23 +9305,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8362,7 +9341,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8377,7 +9357,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8389,7 +9370,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8405,7 +9387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8418,11 +9401,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8435,23 +9420,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8465,7 +9456,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8480,7 +9472,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8492,7 +9485,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8508,7 +9502,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8521,11 +9516,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8538,33 +9535,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -8575,7 +9581,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8587,7 +9594,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8605,7 +9613,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8619,7 +9628,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8634,7 +9644,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8646,7 +9657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8662,7 +9674,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8675,11 +9688,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8692,23 +9707,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8722,7 +9743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8737,7 +9759,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8749,7 +9772,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8765,7 +9789,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8778,11 +9803,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8795,23 +9822,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8825,7 +9858,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8840,7 +9874,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8852,7 +9887,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8868,7 +9904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8881,11 +9918,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8898,33 +9937,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -8935,7 +9983,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8947,7 +9996,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8965,7 +10015,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8979,7 +10030,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8994,7 +10046,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9006,7 +10059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9022,7 +10076,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9035,11 +10090,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9052,23 +10109,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9082,7 +10145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9097,7 +10161,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9109,7 +10174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9125,7 +10191,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9138,11 +10205,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9155,23 +10224,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9185,7 +10260,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9201,7 +10277,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9214,11 +10291,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9231,26 +10310,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -9261,7 +10348,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9273,7 +10361,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9291,7 +10380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9305,7 +10395,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9320,7 +10411,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9332,7 +10424,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9348,7 +10441,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9361,11 +10455,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9378,23 +10474,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9408,7 +10510,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9423,7 +10526,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9435,7 +10539,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9451,7 +10556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9464,11 +10570,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9481,23 +10589,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9511,7 +10625,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9527,7 +10642,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9540,11 +10656,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9557,27 +10675,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -9588,7 +10713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9600,7 +10726,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9618,7 +10745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9632,7 +10760,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9647,7 +10776,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9659,7 +10789,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9675,7 +10806,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9688,11 +10820,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9705,23 +10839,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9735,7 +10875,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9750,7 +10891,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9762,7 +10904,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9778,7 +10921,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9791,11 +10935,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9808,23 +10954,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9838,7 +10990,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9854,7 +11007,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9867,11 +11021,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9884,28 +11040,35 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -9916,7 +11079,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9928,7 +11092,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9946,7 +11111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9960,7 +11126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9975,7 +11142,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9987,7 +11155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10003,7 +11172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10016,11 +11186,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10033,23 +11205,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10063,7 +11241,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10078,7 +11257,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10090,7 +11270,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10106,7 +11287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10119,11 +11301,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10136,23 +11320,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10166,7 +11356,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10186,7 +11377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10200,7 +11392,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10215,7 +11408,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10227,7 +11421,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10243,7 +11438,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10256,11 +11452,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10273,23 +11471,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10303,7 +11507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10318,7 +11523,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10330,7 +11536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10346,7 +11553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10359,11 +11567,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10376,23 +11586,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -10405,11 +11621,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -10422,27 +11640,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 20 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -10453,7 +11678,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10465,7 +11691,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10483,7 +11710,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10497,7 +11725,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10512,7 +11741,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10524,7 +11754,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10540,7 +11771,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10553,11 +11785,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10570,23 +11804,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10600,7 +11840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10615,7 +11856,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10627,7 +11869,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10643,7 +11886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10656,11 +11900,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10673,23 +11919,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10703,7 +11955,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10723,7 +11976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10737,7 +11991,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10752,7 +12007,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10764,7 +12020,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10780,7 +12037,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10793,11 +12051,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10810,23 +12070,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10840,7 +12106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10855,7 +12122,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10867,7 +12135,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10883,7 +12152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10896,11 +12166,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10913,23 +12185,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -10942,11 +12220,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -10959,27 +12239,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 20 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -10990,7 +12277,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11002,7 +12290,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11022,7 +12311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11036,7 +12326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11051,7 +12342,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11063,7 +12355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11079,7 +12372,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11092,11 +12386,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11109,23 +12405,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -11139,7 +12441,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11154,7 +12457,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11166,7 +12470,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11182,7 +12487,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11195,11 +12501,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11212,23 +12520,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -11241,11 +12555,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -11258,20 +12574,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -11282,7 +12604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11294,7 +12617,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11314,7 +12638,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11328,7 +12653,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11343,7 +12669,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11355,7 +12682,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11371,7 +12699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11384,11 +12713,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11401,23 +12732,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -11431,7 +12768,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11446,7 +12784,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11458,7 +12797,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11474,7 +12814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11487,11 +12828,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11504,23 +12847,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -11533,11 +12882,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -11550,21 +12901,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -11575,7 +12931,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11587,7 +12944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11607,7 +12965,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11621,7 +12980,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11636,7 +12996,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11648,7 +13009,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11664,7 +13026,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11677,11 +13040,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11694,23 +13059,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -11724,7 +13095,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11739,7 +13111,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11751,7 +13124,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11767,7 +13141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11780,11 +13155,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11797,23 +13174,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -11826,11 +13209,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -11843,22 +13228,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -11869,7 +13259,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11881,7 +13272,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11901,7 +13293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11915,7 +13308,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11930,7 +13324,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11942,7 +13337,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11958,7 +13354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11971,11 +13368,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11988,23 +13387,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12018,7 +13423,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12033,7 +13439,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12045,7 +13452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12061,7 +13469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12074,11 +13483,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12091,23 +13502,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12120,11 +13537,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12137,21 +13556,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -12162,7 +13586,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12174,7 +13599,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12194,7 +13620,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12208,7 +13635,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12223,7 +13651,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12235,7 +13664,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12251,7 +13681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12264,11 +13695,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12281,23 +13714,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12311,7 +13750,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12326,7 +13766,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12338,7 +13779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12354,7 +13796,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12367,11 +13810,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12384,23 +13829,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12413,11 +13864,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12430,21 +13883,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -12455,7 +13913,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12467,7 +13926,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12487,7 +13947,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12501,7 +13962,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12516,7 +13978,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12528,7 +13991,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12544,7 +14008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12557,11 +14022,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12574,23 +14041,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12604,7 +14077,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12620,7 +14094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12633,11 +14108,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12650,17 +14127,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12673,11 +14154,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12690,20 +14173,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -12714,7 +14203,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12726,7 +14216,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12746,7 +14237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12760,7 +14252,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12775,7 +14268,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12787,7 +14281,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12803,7 +14298,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12816,11 +14312,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12833,23 +14331,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12863,7 +14367,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12879,7 +14384,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12892,11 +14398,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12909,17 +14417,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12932,11 +14444,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -12949,21 +14463,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -12974,7 +14493,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12986,7 +14506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13006,7 +14527,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13020,7 +14542,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13035,7 +14558,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13047,7 +14571,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13063,7 +14588,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13076,11 +14602,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13093,23 +14621,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13123,7 +14657,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13139,7 +14674,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -13152,11 +14688,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -13169,17 +14707,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -13192,11 +14734,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -13209,22 +14753,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -13235,7 +14784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13247,7 +14797,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13267,7 +14818,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13281,7 +14833,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13296,7 +14849,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13308,7 +14862,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13324,7 +14879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13337,11 +14893,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13354,23 +14912,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13384,7 +14948,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13402,7 +14967,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13416,7 +14982,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13431,7 +14998,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13443,7 +15011,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13459,7 +15028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13472,11 +15042,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13489,23 +15061,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -13518,11 +15096,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -13535,17 +15115,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "c", @@ -13558,11 +15142,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "c", @@ -13575,21 +15161,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -13600,7 +15191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13612,7 +15204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13632,7 +15225,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13646,7 +15240,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13661,7 +15256,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13673,7 +15269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13689,7 +15286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13702,11 +15300,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13719,23 +15319,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13749,7 +15355,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13767,7 +15374,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13781,7 +15389,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13796,7 +15405,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13808,7 +15418,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13824,7 +15435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13837,11 +15449,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13854,23 +15468,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -13883,11 +15503,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -13900,17 +15522,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "name": "c", @@ -13923,11 +15549,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "name": "c", @@ -13940,21 +15568,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -13965,7 +15598,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13977,7 +15611,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13999,7 +15634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14013,7 +15649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14028,7 +15665,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14040,7 +15678,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14056,7 +15695,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14069,11 +15709,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14086,23 +15728,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14115,11 +15763,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14132,11 +15782,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14149,11 +15801,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14166,20 +15820,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -14190,7 +15850,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14202,7 +15863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14224,7 +15886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14238,7 +15901,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14253,7 +15917,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14265,7 +15930,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14281,7 +15947,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14294,11 +15961,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14311,23 +15980,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14340,11 +16015,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14357,11 +16034,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14374,11 +16053,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14391,21 +16072,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 5 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -14416,7 +16102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14428,7 +16115,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14450,7 +16138,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14464,7 +16153,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14479,7 +16169,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14491,7 +16182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14507,7 +16199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14520,11 +16213,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14537,23 +16232,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14566,11 +16267,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14583,11 +16286,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14600,11 +16305,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14617,22 +16324,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 5 + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -14643,7 +16355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14655,7 +16368,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14677,7 +16391,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14691,7 +16406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14706,7 +16422,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14718,7 +16435,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14734,7 +16452,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14747,11 +16466,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14764,23 +16485,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14793,11 +16520,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14810,11 +16539,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14827,11 +16558,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -14844,21 +16577,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -14869,7 +16607,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14881,7 +16620,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14903,7 +16643,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14917,7 +16658,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14932,7 +16674,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14944,7 +16687,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14960,7 +16704,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14973,11 +16718,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14990,23 +16737,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -15019,11 +16772,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -15036,11 +16791,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -15053,11 +16810,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "func": { "name": "c", @@ -15070,21 +16829,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -15095,7 +16859,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15107,7 +16872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15129,7 +16895,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15143,7 +16910,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15159,7 +16927,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15172,11 +16941,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15189,17 +16960,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15212,11 +16987,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15229,11 +17006,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15246,11 +17025,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15263,20 +17044,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 5, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -15287,7 +17074,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15299,7 +17087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15321,7 +17110,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15335,7 +17125,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15351,7 +17142,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15364,11 +17156,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15381,17 +17175,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15404,11 +17202,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15421,11 +17221,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15438,11 +17240,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15455,21 +17259,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 5 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -15480,7 +17289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15492,7 +17302,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15514,7 +17325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15528,7 +17340,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15544,7 +17357,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15557,11 +17371,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15574,17 +17390,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15597,11 +17417,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15614,11 +17436,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15631,11 +17455,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15648,22 +17474,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 5 + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -15674,7 +17505,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15686,7 +17518,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15708,7 +17541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15722,7 +17556,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15738,7 +17573,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15751,11 +17587,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15768,17 +17606,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15791,11 +17633,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15808,11 +17652,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15825,11 +17671,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15842,21 +17690,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -15867,7 +17720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15879,7 +17733,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15901,7 +17756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15915,7 +17771,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15931,7 +17788,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15944,11 +17802,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15961,17 +17821,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -15984,11 +17848,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -16001,11 +17867,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -16018,11 +17886,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "c", @@ -16035,21 +17905,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -16060,7 +17935,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16072,7 +17948,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16096,7 +17973,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16109,11 +17987,13 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16126,11 +18006,13 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16143,11 +18025,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16160,11 +18044,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16177,11 +18063,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16194,24 +18082,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 5, + "containerState": "done", + "numLeafNodes": 7 } ], "speed": 1.75, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xbki.json b/src/lib/runners/xbki.json new file mode 100644 index 000000000..b0c23f626 --- /dev/null +++ b/src/lib/runners/xbki.json @@ -0,0 +1,39732 @@ +{ + "expressionContainers": [ + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 19, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 19, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 26, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 26, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 25, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 25 + }, + { + "expression": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 23 + }, + { + "expression": { + "type": "conditional", + "state": "conditionActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 23 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 21 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 21 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 3, + 8, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 3, + 8, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 2, + 7, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 2, + 7, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 27 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 1, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 26 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "conditionActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 1, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 26 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 5, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 5, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 24 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 13, + 4, + 10, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 33 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 13, + 4, + 10, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 33 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 12, + 3, + 9, + 5, + 6, + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 14, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 32 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 12, + 3, + 9, + 5, + 6, + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 14, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 32 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 11, + 2, + 8, + 4, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 11, + 2, + 8, + 4, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 31 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 10, + 1, + 7, + 3, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "conditionActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 10, + 1, + 7, + 3, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 30 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 9, + 6, + 2, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 9, + 6, + 2, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 28 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 10, + 7, + 3, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 35 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 10, + 7, + 3, + 4, + 5, + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 35 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 8, + 5, + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 34 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 8, + 5, + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 34 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 21, + 19, + 16, + 5, + 12, + 7, + 8, + 9, + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 7 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 15, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17, + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 18, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 17, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 16, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 20 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20, + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 20, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 19, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 21 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 21, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 39 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 21, + 19, + 16, + 5, + 12, + 7, + 8, + 9, + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 7 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 15, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17, + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 18, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 17, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 16, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 20 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20, + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 20, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 19, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 21 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 21, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 39 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 20, + 18, + 15, + 4, + 11, + 6, + 7, + 8, + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 13, + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16, + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 17, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 16, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 19 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19, + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 19, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 18, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 20, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 38 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 20, + 18, + 15, + 4, + 11, + 6, + 7, + 8, + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12, + 13, + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 11, + "maxNestedFunctionDepth": 3 + }, + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16, + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 17, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 16, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 19 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19, + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 19, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 18, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 20, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 38 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 19, + 17, + 14, + 3, + 10, + 5, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12, + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 16, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15, + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 15, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 14, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18, + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 18, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 17, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 19, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 37 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 19, + 17, + 14, + 3, + 10, + 5, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12, + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 10, + "maxNestedFunctionDepth": 3 + }, + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 16, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15, + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 15, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 14, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18, + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 18, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 17, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 19, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 37 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 18, + 16, + 13, + 2, + 9, + 4, + 5, + 6, + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 15, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 17, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 16, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 18, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 36 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 18, + 16, + 13, + 2, + 9, + 4, + 5, + 6, + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 8, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 12, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 9, + "maxNestedFunctionDepth": 3 + }, + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 15, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 13, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 17, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 16, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 18, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 36 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17, + 15, + 12, + 1, + 8, + 3, + 4, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 16, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 17, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 35 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "conditionActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17, + 15, + 12, + 1, + 8, + 3, + 4, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 7, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 11, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 10, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 9, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 8, + "maxNestedFunctionDepth": 3 + }, + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 14, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 13, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 12, + "maxNestedFunctionDepth": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 16, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 15, + "maxNestedFunctionDepth": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 17, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 35 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 6, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 7 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5, + 3, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 6 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5, + 3, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 5 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 3, + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 3, + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 2, + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 3 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 2, + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 3 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 + }, + { + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "state": "active", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 + }, + { + "expression": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [], + "funcPriorityAgg": [], + "shorthandNumber": 24, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 + } + ], + "speed": 4, + "hideControls": false, + "explanationsVisibility": "hiddenInitialPausedOnly", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": true, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false, + "showDefaultAndActiveOnly": true +} diff --git a/src/lib/runners/xhdq.json b/src/lib/runners/xhdq.json index 2a90193ba..90737f74f 100644 --- a/src/lib/runners/xhdq.json +++ b/src/lib/runners/xhdq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -18,7 +16,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -30,7 +29,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -59,11 +60,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -76,15 +79,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -98,7 +105,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +118,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -122,7 +131,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +148,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -152,7 +163,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -166,15 +178,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -187,21 +202,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -215,7 +236,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -227,7 +249,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -239,7 +262,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -255,7 +279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -269,7 +294,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -283,15 +309,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -304,26 +333,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -334,16 +370,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 - } + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/xhul.json b/src/lib/runners/xhul.json index 808295452..30ffc6d4b 100644 --- a/src/lib/runners/xhul.json +++ b/src/lib/runners/xhul.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "B", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -57,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -70,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,11 +107,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -120,11 +126,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -138,17 +146,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -163,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,11 +223,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -224,13 +242,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -244,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,11 +296,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -290,36 +315,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xjzx.json b/src/lib/runners/xjzx.json index b0d887e8f..995ecaff2 100644 --- a/src/lib/runners/xjzx.json +++ b/src/lib/runners/xjzx.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -74,13 +77,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -94,7 +100,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -123,11 +131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -140,28 +150,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xkcm.json b/src/lib/runners/xkcm.json index 54e3e5ab0..93e2cd7a3 100644 --- a/src/lib/runners/xkcm.json +++ b/src/lib/runners/xkcm.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -47,7 +47,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -60,11 +61,13 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -77,11 +80,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -94,11 +99,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -111,11 +118,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -128,24 +137,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xlgb.json b/src/lib/runners/xlgb.json index b6606615b..994a63062 100644 --- a/src/lib/runners/xlgb.json +++ b/src/lib/runners/xlgb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -30,7 +28,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -44,11 +43,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -62,11 +63,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -80,11 +83,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -98,11 +103,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -116,11 +123,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -134,11 +143,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -152,11 +163,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -170,20 +183,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xmqp.json b/src/lib/runners/xmqp.json index faeadc5af..fb52d2955 100644 --- a/src/lib/runners/xmqp.json +++ b/src/lib/runners/xmqp.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30,16 +29,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -50,16 +52,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 - } + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/xpks.json b/src/lib/runners/xpks.json index 9b51dc1b4..0a95b546d 100644 --- a/src/lib/runners/xpks.json +++ b/src/lib/runners/xpks.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -38,16 +37,18 @@ }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xqjd.json b/src/lib/runners/xqjd.json index 8f8ba8d99..e3310ce53 100644 --- a/src/lib/runners/xqjd.json +++ b/src/lib/runners/xqjd.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -80,9 +83,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -97,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -108,9 +114,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -125,7 +133,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +146,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -153,7 +163,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -166,11 +177,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -183,15 +196,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "questionFoodGrey", @@ -206,39 +223,48 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "type": "function", - "meta": "minusOneEffect" + "meta": "minusOneEffect", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xusi.json b/src/lib/runners/xusi.json index e6c16f475..490754dc7 100644 --- a/src/lib/runners/xusi.json +++ b/src/lib/runners/xusi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +40,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -51,9 +52,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -67,7 +70,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -83,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -97,7 +102,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -108,13 +114,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -127,27 +136,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "b", @@ -158,7 +174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -170,7 +187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +203,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -196,9 +215,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -212,7 +233,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -228,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -242,7 +265,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -253,13 +277,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -272,31 +299,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xwzc.json b/src/lib/runners/xwzc.json index 907164a24..3b01752a3 100644 --- a/src/lib/runners/xwzc.json +++ b/src/lib/runners/xwzc.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,11 +55,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -71,24 +74,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xxan.json b/src/lib/runners/xxan.json index ee150bf7a..4add3f7f3 100644 --- a/src/lib/runners/xxan.json +++ b/src/lib/runners/xxan.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -17,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -55,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -71,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -85,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -99,15 +103,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -120,30 +127,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/yabb.json b/src/lib/runners/yabb.json index 7f8a1e5a5..4854f7771 100644 --- a/src/lib/runners/yabb.json +++ b/src/lib/runners/yabb.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,20 +69,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 } ], @@ -88,8 +98,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ybne.json b/src/lib/runners/ybne.json index 4c7c541e7..2925e1148 100644 --- a/src/lib/runners/ybne.json +++ b/src/lib/runners/ybne.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -131,7 +140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -145,15 +155,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -166,30 +179,37 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ycpk.json b/src/lib/runners/ycpk.json index 025c3593f..db7251f05 100644 --- a/src/lib/runners/ycpk.json +++ b/src/lib/runners/ycpk.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -16,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,11 +71,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -88,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,13 +131,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "shorthandNumber", @@ -147,32 +159,38 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 0, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ycxr.json b/src/lib/runners/ycxr.json index 8603fd082..4d25cc2f3 100644 --- a/src/lib/runners/ycxr.json +++ b/src/lib/runners/ycxr.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -25,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -41,7 +44,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -52,25 +56,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/yfwd.json b/src/lib/runners/yfwd.json index 86f146016..f773d8b8b 100644 --- a/src/lib/runners/yfwd.json +++ b/src/lib/runners/yfwd.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -55,7 +58,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -66,31 +70,35 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "visible", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/yiri.json b/src/lib/runners/yiri.json index a0511def3..cb13d83c4 100644 --- a/src/lib/runners/yiri.json +++ b/src/lib/runners/yiri.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "h", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/yjur.json b/src/lib/runners/yjur.json index 2e93565a5..9154f8a3d 100644 --- a/src/lib/runners/yjur.json +++ b/src/lib/runners/yjur.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -22,7 +20,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -36,11 +35,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -54,11 +55,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -72,11 +75,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -90,16 +95,19 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -110,16 +118,19 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - } + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/ykqf.json b/src/lib/runners/ykqf.json index 252910724..fa3c8f851 100644 --- a/src/lib/runners/ykqf.json +++ b/src/lib/runners/ykqf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "bentoBox", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "bentoBox", @@ -40,22 +40,26 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ylav.json b/src/lib/runners/ylav.json index fb8a910bd..e9d22925c 100644 --- a/src/lib/runners/ylav.json +++ b/src/lib/runners/ylav.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -116,7 +124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -127,9 +136,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -144,7 +155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -155,9 +167,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -172,7 +186,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -184,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -200,7 +216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -213,11 +230,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -230,15 +249,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -253,38 +276,47 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ynoy.json b/src/lib/runners/ynoy.json index 1d3a8d403..ec7c446f0 100644 --- a/src/lib/runners/ynoy.json +++ b/src/lib/runners/ynoy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -46,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -59,11 +60,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -76,11 +79,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -93,15 +98,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -115,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -131,7 +141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -145,7 +156,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -157,7 +169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -169,7 +182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -199,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -213,15 +229,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -234,21 +253,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -263,7 +288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -275,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -291,7 +318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -304,11 +332,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -321,15 +351,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -344,7 +378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -356,7 +391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -367,11 +403,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -386,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -398,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -410,7 +451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -421,13 +463,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -443,30 +489,40 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 4 + }, + "numLeafNodes": 15, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -482,7 +538,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -494,7 +551,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -512,7 +570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -525,11 +584,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -542,11 +603,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -559,15 +622,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -581,7 +648,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -597,7 +665,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -611,7 +680,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -623,7 +693,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -635,7 +706,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -651,7 +723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -665,7 +738,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -679,15 +753,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -700,21 +777,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -729,7 +812,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -741,7 +825,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -757,7 +842,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -770,11 +856,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -787,15 +875,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -810,7 +902,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -822,7 +915,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -833,11 +927,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -852,7 +949,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -864,7 +962,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -876,7 +975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -887,13 +987,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -909,33 +1013,41 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 15 }, { "expression": { @@ -951,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -963,7 +1076,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -981,7 +1095,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -994,11 +1109,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1011,11 +1128,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1028,15 +1147,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1050,7 +1173,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1066,7 +1190,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1080,7 +1205,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1092,7 +1218,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1104,7 +1231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1120,7 +1248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1134,7 +1263,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1148,15 +1278,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -1169,21 +1302,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1198,7 +1337,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1210,7 +1350,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1226,7 +1367,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1239,11 +1381,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1256,15 +1400,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1279,7 +1427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1291,7 +1440,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1302,11 +1452,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1321,7 +1474,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1333,7 +1487,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1345,7 +1500,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1356,13 +1512,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "name": "f", @@ -1378,34 +1538,42 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 15 }, { "expression": { @@ -1421,7 +1589,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1433,7 +1602,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1451,7 +1621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1464,11 +1635,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1481,11 +1654,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1498,15 +1673,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1520,7 +1699,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1537,7 +1717,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1549,7 +1730,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1567,7 +1749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1580,11 +1763,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1597,11 +1782,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1614,15 +1801,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1636,7 +1827,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1648,7 +1840,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1660,7 +1853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1676,7 +1870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1690,7 +1885,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1704,15 +1900,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -1725,21 +1924,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1754,7 +1959,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1766,7 +1972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1782,7 +1989,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1795,11 +2003,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1812,15 +2022,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1835,7 +2049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1847,7 +2062,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1858,11 +2074,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1877,7 +2096,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1889,7 +2109,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1901,7 +2122,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1912,13 +2134,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -1935,7 +2161,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1947,7 +2174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1965,7 +2193,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1978,11 +2207,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1995,11 +2226,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2012,41 +2245,52 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 21 }, { "expression": { @@ -2062,7 +2306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2074,7 +2319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2092,7 +2338,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2105,11 +2352,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2122,11 +2371,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2139,15 +2390,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2161,7 +2416,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2178,7 +2434,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2190,7 +2447,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2208,7 +2466,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2221,11 +2480,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2238,11 +2499,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2255,15 +2518,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2277,7 +2544,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2289,7 +2557,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2301,7 +2570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2317,7 +2587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2331,7 +2602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2345,15 +2617,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -2366,21 +2641,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2395,7 +2676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2407,7 +2689,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2423,7 +2706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2436,11 +2720,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2453,15 +2739,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2476,7 +2766,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2488,7 +2779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2499,11 +2791,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2518,7 +2813,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2530,7 +2826,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2542,7 +2839,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2553,13 +2851,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2576,7 +2878,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2588,7 +2891,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2606,7 +2910,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2619,11 +2924,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2636,11 +2943,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2653,45 +2962,54 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -2707,7 +3025,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2719,7 +3038,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2737,7 +3057,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2750,11 +3071,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2767,11 +3090,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2784,15 +3109,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2806,7 +3135,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2818,7 +3148,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2830,7 +3161,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2846,7 +3178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2860,7 +3193,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2874,15 +3208,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -2895,21 +3232,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -2924,7 +3267,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2936,7 +3280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2952,7 +3297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2965,11 +3311,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2982,15 +3330,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3005,7 +3357,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3017,7 +3370,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3028,11 +3382,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3047,7 +3404,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3059,7 +3417,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3071,7 +3430,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3082,13 +3442,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3105,7 +3469,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3117,7 +3482,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3135,7 +3501,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3148,11 +3515,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3165,11 +3534,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3182,36 +3553,46 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 - } + "priority": 4, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -3227,7 +3608,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3239,7 +3621,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3257,7 +3640,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3270,11 +3654,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3287,11 +3673,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3304,15 +3692,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3326,7 +3718,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3338,7 +3731,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3350,7 +3744,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3366,7 +3761,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3380,7 +3776,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3394,15 +3791,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -3415,21 +3815,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3444,7 +3850,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3456,7 +3863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3472,7 +3880,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3485,11 +3894,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3502,15 +3913,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3525,7 +3940,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3537,7 +3953,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3548,11 +3965,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3567,7 +3987,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3579,7 +4000,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3591,7 +4013,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3602,13 +4025,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3625,7 +4052,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3637,7 +4065,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3655,7 +4084,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3668,11 +4098,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3685,11 +4117,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3702,37 +4136,46 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -3748,7 +4191,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3760,7 +4204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3778,7 +4223,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3791,11 +4237,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3808,11 +4256,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3825,15 +4275,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -3847,7 +4301,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3859,7 +4314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3871,7 +4327,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3887,7 +4344,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3901,7 +4359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3915,15 +4374,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -3936,21 +4398,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -3965,7 +4433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3977,7 +4446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3993,7 +4463,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4006,11 +4477,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4023,15 +4496,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4046,7 +4523,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4058,7 +4536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4069,11 +4548,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4088,7 +4570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4100,7 +4583,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4112,7 +4596,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4123,13 +4608,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4146,7 +4635,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4158,7 +4648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4176,7 +4667,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4189,11 +4681,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4206,11 +4700,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4223,38 +4719,47 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -4270,7 +4775,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4282,7 +4788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4300,7 +4807,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4313,11 +4821,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4330,11 +4840,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4347,15 +4859,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4369,7 +4885,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4381,7 +4898,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4393,7 +4911,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4409,7 +4928,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4423,7 +4943,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -4437,15 +4958,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -4458,21 +4982,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4487,7 +5017,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4499,7 +5030,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4515,7 +5047,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4528,11 +5061,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4545,15 +5080,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4568,7 +5107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4580,7 +5120,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4591,11 +5132,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -4610,7 +5154,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4622,7 +5167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4634,7 +5180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4645,13 +5192,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4668,7 +5219,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4680,7 +5232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4698,7 +5251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4712,7 +5266,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4724,7 +5279,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4736,7 +5292,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4747,17 +5304,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4771,7 +5333,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4783,7 +5346,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4795,7 +5359,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4806,17 +5371,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -4830,7 +5400,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4842,7 +5413,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4854,7 +5426,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4865,43 +5438,55 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -4917,7 +5502,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4929,7 +5515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4947,7 +5534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4960,11 +5548,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4977,11 +5567,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4994,15 +5586,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5016,7 +5612,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5028,7 +5625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5040,7 +5638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5056,7 +5655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5070,7 +5670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -5084,15 +5685,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -5105,21 +5709,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5134,7 +5744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5146,7 +5757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5162,7 +5774,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -5175,11 +5788,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -5192,15 +5807,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5215,7 +5834,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5227,7 +5847,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5238,11 +5859,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5257,7 +5881,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5269,7 +5894,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5281,7 +5907,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5292,13 +5919,17 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5315,7 +5946,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5327,7 +5959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5345,7 +5978,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5359,7 +5993,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5371,7 +6006,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5383,7 +6019,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5394,17 +6031,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5418,7 +6060,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5430,7 +6073,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5442,7 +6086,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5453,17 +6098,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5477,7 +6127,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5489,7 +6140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5501,7 +6153,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5512,43 +6165,55 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -5564,7 +6229,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5576,7 +6242,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5594,7 +6261,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -5607,11 +6275,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -5624,11 +6294,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -5641,15 +6313,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5663,7 +6339,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5675,7 +6352,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5687,7 +6365,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5703,7 +6382,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5717,7 +6397,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -5731,15 +6412,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -5752,21 +6436,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5781,7 +6471,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5793,7 +6484,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5809,7 +6501,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -5822,11 +6515,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -5839,15 +6534,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5862,7 +6561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5874,7 +6574,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5885,11 +6586,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -5905,7 +6609,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5923,7 +6628,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5937,7 +6643,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5949,7 +6656,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5961,7 +6669,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5972,17 +6681,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -5996,7 +6710,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6008,7 +6723,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6020,7 +6736,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6031,17 +6748,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6055,7 +6777,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6067,7 +6790,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6079,7 +6803,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6090,36 +6815,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 - } + "priority": 3, + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -6135,7 +6871,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6147,7 +6884,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6165,7 +6903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6178,11 +6917,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6195,11 +6936,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6212,15 +6955,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6234,7 +6981,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6246,7 +6994,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6258,7 +7007,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6274,7 +7024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6288,7 +7039,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -6302,15 +7054,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -6323,21 +7078,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6352,7 +7113,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6364,7 +7126,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6380,7 +7143,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -6393,11 +7157,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -6410,15 +7176,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6433,7 +7203,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6445,7 +7216,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6456,11 +7228,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6476,7 +7251,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6494,7 +7270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6508,7 +7285,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6520,7 +7298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6532,7 +7311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6543,17 +7323,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6567,7 +7352,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6579,7 +7365,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6591,7 +7378,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6602,17 +7390,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6626,7 +7419,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6638,7 +7432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6650,7 +7445,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6661,37 +7457,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -6707,7 +7513,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6719,7 +7526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6737,7 +7545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6750,11 +7559,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6767,11 +7578,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6784,15 +7597,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -6806,7 +7623,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6818,7 +7636,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6830,7 +7649,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6846,7 +7666,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6860,7 +7681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -6874,15 +7696,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -6895,21 +7720,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -6924,7 +7755,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6936,7 +7768,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6952,7 +7785,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -6965,11 +7799,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -6982,15 +7818,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7005,7 +7845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7017,7 +7858,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7028,11 +7870,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7048,7 +7893,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7066,7 +7912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7080,7 +7927,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7092,7 +7940,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7104,7 +7953,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7115,17 +7965,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7139,7 +7994,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7151,7 +8007,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7163,7 +8020,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7174,17 +8032,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7198,7 +8061,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7210,7 +8074,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7222,7 +8087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7233,38 +8099,48 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -7280,7 +8156,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7292,7 +8169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7310,7 +8188,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7323,11 +8202,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7340,11 +8221,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7357,15 +8240,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7379,7 +8266,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7391,7 +8279,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7403,7 +8292,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7419,7 +8309,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7433,7 +8324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -7447,15 +8339,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -7468,21 +8363,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7497,7 +8398,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7509,7 +8411,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7525,7 +8428,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -7538,11 +8442,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -7555,15 +8461,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7578,7 +8488,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7590,7 +8501,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7601,11 +8513,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7621,7 +8536,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7640,7 +8556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7652,7 +8569,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7663,11 +8581,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7681,7 +8602,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7693,7 +8615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7705,7 +8628,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7716,17 +8640,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7740,7 +8669,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7752,7 +8682,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7764,7 +8695,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7775,17 +8707,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -7799,7 +8736,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7811,7 +8749,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7823,7 +8762,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7834,37 +8774,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -7880,7 +8830,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7892,7 +8843,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7910,7 +8862,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7923,11 +8876,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7940,11 +8895,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7957,15 +8914,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -7979,7 +8940,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7991,7 +8953,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8003,7 +8966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8019,7 +8983,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8033,7 +8998,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -8047,15 +9013,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -8068,21 +9037,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8097,7 +9072,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8109,7 +9085,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8125,7 +9102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -8138,11 +9116,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -8155,15 +9135,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8178,7 +9162,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8190,7 +9175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8201,11 +9187,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8221,7 +9210,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8240,7 +9230,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8252,7 +9243,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8263,11 +9255,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8281,7 +9276,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8293,7 +9289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8305,7 +9302,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8316,17 +9314,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8340,7 +9343,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8352,7 +9356,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8364,7 +9369,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8375,17 +9381,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8399,7 +9410,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8411,7 +9423,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8423,7 +9436,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8434,37 +9448,47 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -8480,7 +9504,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8492,7 +9517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8510,7 +9536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -8523,11 +9550,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -8540,11 +9569,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -8557,15 +9588,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8579,7 +9614,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8591,7 +9627,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8603,7 +9640,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8619,7 +9657,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8633,7 +9672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -8647,15 +9687,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -8668,21 +9711,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8697,7 +9746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8709,7 +9759,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8725,7 +9776,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -8738,11 +9790,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -8755,15 +9809,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8782,7 +9840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8794,7 +9853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8805,11 +9865,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -8823,7 +9886,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8835,7 +9899,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8847,7 +9912,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8858,17 +9924,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8882,7 +9953,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8894,7 +9966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8906,7 +9979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8917,17 +9991,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -8943,7 +10022,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8955,7 +10035,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8967,7 +10048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8978,30 +10060,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 - } + "priority": 5, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -9017,7 +10108,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9029,7 +10121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9047,7 +10140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9060,11 +10154,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9077,11 +10173,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9094,15 +10192,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9116,7 +10218,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9128,7 +10231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9140,7 +10244,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9156,7 +10261,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9170,7 +10276,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -9184,15 +10291,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -9205,21 +10315,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9234,7 +10350,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9246,7 +10363,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9262,7 +10380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -9275,11 +10394,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -9292,15 +10413,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9319,7 +10444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9331,7 +10457,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9342,11 +10469,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9360,7 +10490,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9372,7 +10503,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9384,7 +10516,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9395,17 +10528,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9419,7 +10557,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9431,7 +10570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9443,7 +10583,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9454,17 +10595,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9480,7 +10626,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9492,7 +10639,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9504,7 +10652,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9515,31 +10664,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -9555,7 +10712,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9567,7 +10725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9585,7 +10744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9598,11 +10758,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9615,11 +10777,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9632,15 +10796,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9654,7 +10822,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9666,7 +10835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9678,7 +10848,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9694,7 +10865,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9708,7 +10880,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -9722,15 +10895,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -9743,21 +10919,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9772,7 +10954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9784,7 +10967,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9800,7 +10984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -9813,11 +10998,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -9830,15 +11017,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9857,7 +11048,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9869,7 +11061,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9880,11 +11073,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -9898,7 +11094,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9910,7 +11107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9922,7 +11120,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9933,17 +11132,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -9957,7 +11161,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9969,7 +11174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9981,7 +11187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9992,17 +11199,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10018,7 +11230,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10030,7 +11243,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10042,7 +11256,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -10053,31 +11268,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -10093,7 +11316,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10105,7 +11329,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10123,7 +11348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10136,11 +11362,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10153,11 +11381,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10170,15 +11400,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10192,7 +11426,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10204,7 +11439,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10216,7 +11452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10232,7 +11469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10246,7 +11484,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -10260,15 +11499,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -10281,21 +11523,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10310,7 +11558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10322,7 +11571,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10338,7 +11588,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -10351,11 +11602,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -10368,15 +11621,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10395,7 +11652,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10407,7 +11665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10418,11 +11677,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10436,7 +11698,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10448,7 +11711,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10460,7 +11724,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -10471,17 +11736,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10495,7 +11765,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10507,7 +11778,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10519,7 +11791,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -10530,17 +11803,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10556,7 +11834,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10568,7 +11847,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10580,7 +11860,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -10591,31 +11872,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -10631,7 +11920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10643,7 +11933,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10661,7 +11952,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10674,11 +11966,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10691,11 +11985,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10708,15 +12004,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10730,7 +12030,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10742,7 +12043,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10754,7 +12056,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10770,7 +12073,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10784,7 +12088,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -10798,15 +12103,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -10819,21 +12127,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -10848,7 +12162,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10860,7 +12175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10876,7 +12192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -10889,11 +12206,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -10906,15 +12225,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10933,7 +12256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10945,7 +12269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10956,11 +12281,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -10974,7 +12302,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10986,7 +12315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10998,7 +12328,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11009,17 +12340,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11033,7 +12369,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11045,7 +12382,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11057,7 +12395,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11068,17 +12407,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11094,7 +12438,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11106,7 +12451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11118,7 +12464,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -11129,32 +12476,40 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -11170,7 +12525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11182,7 +12538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11200,7 +12557,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11213,11 +12571,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11230,11 +12590,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11247,15 +12609,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -11269,7 +12635,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11281,7 +12648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11293,7 +12661,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11309,7 +12678,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11323,7 +12693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -11337,15 +12708,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -11358,21 +12732,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11387,7 +12767,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11399,7 +12780,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11415,7 +12797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -11428,11 +12811,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -11445,15 +12830,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -11472,7 +12861,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11484,7 +12874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11495,11 +12886,14 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -11513,7 +12907,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11525,7 +12920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11537,7 +12933,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11548,17 +12945,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11572,7 +12974,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11584,7 +12987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11596,7 +13000,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11607,17 +13012,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11633,7 +13043,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11645,7 +13056,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11657,7 +13069,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -11668,31 +13081,39 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -11708,7 +13129,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11720,7 +13142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11738,7 +13161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11751,11 +13175,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11768,11 +13194,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11785,15 +13213,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -11807,7 +13239,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11819,7 +13252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11831,7 +13265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11847,7 +13282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11861,7 +13297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -11875,15 +13312,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -11896,21 +13336,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -11925,7 +13371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11937,7 +13384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11953,7 +13401,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -11966,11 +13415,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -11983,15 +13434,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12006,7 +13461,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12018,7 +13474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -12029,24 +13486,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -12062,7 +13526,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12074,7 +13539,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12092,7 +13558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12105,11 +13572,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12122,11 +13591,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12139,15 +13610,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12161,7 +13636,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12173,7 +13649,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12185,7 +13662,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12201,7 +13679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12215,7 +13694,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -12229,15 +13709,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -12250,21 +13733,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -12279,7 +13768,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12291,7 +13781,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12307,7 +13798,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -12320,11 +13812,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -12337,15 +13831,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12360,7 +13858,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12372,7 +13871,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -12383,25 +13883,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -12417,7 +13923,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12429,7 +13936,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12447,7 +13955,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12460,11 +13969,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12477,11 +13988,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12494,15 +14007,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12516,7 +14033,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12528,7 +14046,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12540,7 +14059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12556,7 +14076,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12570,7 +14091,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -12584,15 +14106,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -12605,21 +14130,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -12634,7 +14165,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12646,7 +14178,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12662,7 +14195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -12675,11 +14209,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -12692,15 +14228,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12715,7 +14255,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12727,7 +14268,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -12738,26 +14280,32 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -12773,7 +14321,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12785,7 +14334,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12803,7 +14353,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12816,11 +14367,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12833,11 +14386,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12850,15 +14405,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -12872,7 +14431,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12884,7 +14444,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12896,7 +14457,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12912,7 +14474,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12926,7 +14489,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -12940,15 +14504,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -12961,21 +14528,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -12990,7 +14563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13002,7 +14576,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13018,7 +14593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -13031,11 +14607,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -13048,15 +14626,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13071,7 +14653,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13083,7 +14666,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13094,25 +14678,31 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -13128,7 +14718,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13140,7 +14731,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13158,7 +14750,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13171,11 +14764,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13188,11 +14783,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13205,15 +14802,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13227,7 +14828,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13239,7 +14841,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13251,7 +14854,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13267,7 +14871,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13281,7 +14886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -13295,15 +14901,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -13316,21 +14925,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -13344,7 +14959,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13355,14 +14971,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { "expression": { @@ -13380,7 +15003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13392,7 +15016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13410,7 +15035,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13423,11 +15049,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13440,11 +15068,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13457,15 +15087,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13479,7 +15113,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13491,7 +15126,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13503,7 +15139,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13519,7 +15156,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13533,7 +15171,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -13547,15 +15186,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -13568,21 +15210,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -13596,7 +15244,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13607,17 +15256,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -13635,7 +15288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13647,7 +15301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13665,7 +15320,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13678,11 +15334,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13695,11 +15353,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13712,15 +15372,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13734,7 +15398,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13746,7 +15411,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13758,7 +15424,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13774,7 +15441,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13788,7 +15456,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -13802,15 +15471,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -13823,21 +15495,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -13851,7 +15529,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13862,18 +15541,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -13891,7 +15574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13903,7 +15587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13921,7 +15606,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13934,11 +15620,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13951,11 +15639,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13968,15 +15658,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -13990,7 +15684,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14002,7 +15697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14014,7 +15710,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14030,7 +15727,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14044,7 +15742,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14058,15 +15757,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -14079,21 +15781,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -14107,7 +15815,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14122,7 +15831,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14134,7 +15844,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14152,7 +15863,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14165,11 +15877,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14182,11 +15896,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14199,15 +15915,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -14221,7 +15941,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14233,7 +15954,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14245,7 +15967,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14261,7 +15984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14275,7 +15999,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14289,15 +16014,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -14310,31 +16038,40 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 16 }, { "expression": { @@ -14352,7 +16089,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14364,7 +16102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14382,7 +16121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14395,11 +16135,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14412,11 +16154,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14429,15 +16173,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -14451,7 +16199,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14463,7 +16212,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14475,7 +16225,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14491,7 +16242,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14505,7 +16257,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14519,15 +16272,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -14540,21 +16296,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "func": { "arg": { @@ -14568,7 +16330,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14583,7 +16346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14595,7 +16359,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14613,7 +16378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14626,11 +16392,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14643,11 +16411,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14660,15 +16430,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -14682,7 +16456,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14694,7 +16469,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14706,7 +16482,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14722,7 +16499,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14736,7 +16514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14750,15 +16529,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -14771,35 +16553,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -14813,7 +16602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14825,7 +16615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14843,7 +16634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14856,11 +16648,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14873,11 +16667,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14890,15 +16686,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -14912,7 +16712,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14924,7 +16725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14936,7 +16738,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14952,7 +16755,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14966,7 +16770,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14980,15 +16785,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -15001,22 +16809,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { "expression": { @@ -15032,7 +16850,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15044,7 +16863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15062,7 +16882,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15075,11 +16896,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15092,11 +16915,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15109,15 +16934,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -15131,7 +16960,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15143,7 +16973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15155,7 +16986,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15171,7 +17003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15185,7 +17018,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -15199,15 +17033,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -15220,25 +17057,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -15254,7 +17098,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15266,7 +17111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15284,7 +17130,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15297,11 +17144,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15314,11 +17163,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15331,15 +17182,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -15353,7 +17208,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15365,7 +17221,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15377,7 +17234,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15393,7 +17251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15407,7 +17266,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -15421,15 +17281,18 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -15442,26 +17305,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -15477,7 +17347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15489,7 +17360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15507,7 +17379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15520,11 +17393,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15537,11 +17412,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15554,15 +17431,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -15576,7 +17457,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15588,7 +17470,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15600,7 +17483,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15616,7 +17500,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15630,7 +17515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15645,7 +17531,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15657,7 +17544,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15675,7 +17563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15688,11 +17577,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15705,11 +17596,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15722,23 +17615,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "j", @@ -15751,25 +17650,32 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -15785,7 +17691,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15797,7 +17704,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15815,7 +17723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15828,11 +17737,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15845,11 +17756,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15862,15 +17775,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -15884,7 +17801,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15896,7 +17814,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15908,7 +17827,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15924,7 +17844,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15938,7 +17859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15953,7 +17875,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15965,7 +17888,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15983,7 +17907,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15996,11 +17921,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16013,11 +17940,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16030,23 +17959,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "j", @@ -16059,29 +17994,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "j", @@ -16092,7 +18032,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16104,7 +18045,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16120,7 +18062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16134,7 +18077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16149,7 +18093,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16161,7 +18106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16179,7 +18125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16192,11 +18139,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16209,11 +18158,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16226,23 +18177,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "j", @@ -16255,20 +18212,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "j", @@ -16279,7 +18242,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16291,7 +18255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16307,7 +18272,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16321,7 +18287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16336,7 +18303,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16348,7 +18316,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16366,7 +18335,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16379,11 +18349,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16396,11 +18368,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16413,23 +18387,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "j", @@ -16442,21 +18422,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "j", @@ -16467,7 +18452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16479,7 +18465,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16495,7 +18482,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16509,7 +18497,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16524,7 +18513,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16536,7 +18526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16554,7 +18545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16567,11 +18559,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16584,11 +18578,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16601,23 +18597,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "j", @@ -16630,22 +18632,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "j", @@ -16656,7 +18663,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16668,7 +18676,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16684,7 +18693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16698,7 +18708,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16713,7 +18724,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16725,7 +18737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16743,7 +18756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16756,11 +18770,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16773,11 +18789,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16790,23 +18808,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "j", @@ -16819,21 +18843,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "j", @@ -16844,7 +18873,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16856,7 +18886,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16872,7 +18903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16886,7 +18918,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16901,7 +18934,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16913,7 +18947,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16931,7 +18966,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16944,11 +18980,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16961,11 +18999,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16978,23 +19018,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, "func": { "name": "j", @@ -17007,21 +19053,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "j", @@ -17032,7 +19083,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17044,7 +19096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17060,7 +19113,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17074,7 +19128,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17092,7 +19147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17105,11 +19161,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17122,11 +19180,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17139,17 +19199,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "j", @@ -17162,20 +19226,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 3 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "j", @@ -17186,7 +19256,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17198,7 +19269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17214,7 +19286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17228,7 +19301,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17246,7 +19320,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17259,11 +19334,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17276,11 +19353,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17293,17 +19372,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "j", @@ -17316,21 +19399,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "j", @@ -17341,7 +19429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17353,7 +19442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17369,7 +19459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17383,7 +19474,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17401,7 +19493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17414,11 +19507,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17431,11 +19526,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17448,17 +19545,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "j", @@ -17471,22 +19572,27 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "j", @@ -17497,7 +19603,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17509,7 +19616,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17525,7 +19633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17539,7 +19648,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17557,7 +19667,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17570,11 +19681,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17587,11 +19700,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17604,17 +19719,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "j", @@ -17627,21 +19746,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "j", @@ -17652,7 +19776,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17664,7 +19789,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17680,7 +19806,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17694,7 +19821,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17712,7 +19840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17725,11 +19854,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17742,11 +19873,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17759,17 +19892,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "j", @@ -17782,21 +19919,26 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "j", @@ -17807,7 +19949,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17819,7 +19962,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17839,7 +19983,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17852,11 +19997,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17869,11 +20016,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17886,11 +20035,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17903,24 +20054,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 5 } ], "speed": 4, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/ysxf.json b/src/lib/runners/ysxf.json index d45a43bfd..3a7dc30ad 100644 --- a/src/lib/runners/ysxf.json +++ b/src/lib/runners/ysxf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -19,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -59,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -73,11 +74,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -91,11 +94,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -109,11 +114,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -126,11 +133,13 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -144,13 +153,16 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -164,11 +176,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -182,20 +196,23 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/yxel.json b/src/lib/runners/yxel.json index d30f9e04a..dfa27474e 100644 --- a/src/lib/runners/yxel.json +++ b/src/lib/runners/yxel.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "c", "highlightType": "default", @@ -12,16 +10,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/yyfi.json b/src/lib/runners/yyfi.json index 7ad43ba5e..89ec84bdc 100644 --- a/src/lib/runners/yyfi.json +++ b/src/lib/runners/yyfi.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -51,7 +51,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -65,11 +66,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "bentoBox", @@ -82,11 +85,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -100,22 +105,26 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zahd.json b/src/lib/runners/zahd.json index c7e32c577..d1f14d6bb 100644 --- a/src/lib/runners/zahd.json +++ b/src/lib/runners/zahd.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +41,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +54,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -80,26 +83,33 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 3 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -110,16 +120,18 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - } + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/zdpf.json b/src/lib/runners/zdpf.json index c4c2e85fa..5815512ca 100644 --- a/src/lib/runners/zdpf.json +++ b/src/lib/runners/zdpf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -17,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +30,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "shorthandNumber", @@ -45,18 +45,21 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zemy.json b/src/lib/runners/zemy.json index 1e772af1f..901f3ae01 100644 --- a/src/lib/runners/zemy.json +++ b/src/lib/runners/zemy.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -17,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -42,13 +42,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -61,17 +64,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -86,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -100,7 +107,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -111,13 +119,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -130,17 +141,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -155,7 +169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -169,7 +184,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -180,13 +196,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -199,18 +218,21 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -225,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -239,7 +262,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -250,13 +274,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -269,17 +296,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -294,7 +324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -308,7 +339,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -319,13 +351,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "b", @@ -338,17 +373,20 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -361,7 +399,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -374,20 +413,24 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/spki.json b/src/lib/runners/zick.json similarity index 60% rename from src/lib/runners/spki.json rename to src/lib/runners/zick.json index 19e435ae2..94f9a658f 100644 --- a/src/lib/runners/spki.json +++ b/src/lib/runners/zick.json @@ -1,38 +1,64 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", "checkType": "isZero", "condition": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { - "name": "A", - "highlightType": "initialHighlighted", + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { - "arg": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { "name": "f", @@ -41,14 +67,15 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, 2, + 5, 3, 4 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -62,11 +89,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -79,40 +108,44 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, - "func": { - "name": "shorthandFunc", - "highlightType": "initialHighlighted", + "second": { + "name": "f", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 5 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "maxNestedFunctionDepth": 0 }, "state": "default", - "type": "call", - "priority": 2 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 - } + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zkon.json b/src/lib/runners/zkon.json index a4d459ddf..f3bfc6652 100644 --- a/src/lib/runners/zkon.json +++ b/src/lib/runners/zkon.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "B", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -57,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -70,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,11 +107,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -120,11 +126,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -138,17 +146,22 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -163,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,11 +223,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -224,13 +242,16 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -244,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,11 +296,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -290,36 +315,44 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 - } + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zlfx.json b/src/lib/runners/zlfx.json new file mode 100644 index 000000000..533e2880d --- /dev/null +++ b/src/lib/runners/zlfx.json @@ -0,0 +1,390 @@ +{ + "expressionContainers": [ + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 4, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 3, + "maxNestedFunctionDepth": 0 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 + }, + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false, + "maxNestedFunctionDepth": 0 + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 0 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 0 + }, + "type": "function", + "maxNestedFunctionDepth": 1 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 1, + "maxNestedFunctionDepth": 2 + }, + "state": "default", + "type": "call", + "priority": 2, + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" + } + ], + "speed": 1, + "hideControls": true, + "explanationsVisibility": "hidden", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": false, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} diff --git a/src/lib/runners/zlrx.json b/src/lib/runners/zlrx.json index 213c76945..8bf0b36d6 100644 --- a/src/lib/runners/zlrx.json +++ b/src/lib/runners/zlrx.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -62,21 +66,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -91,7 +101,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -105,7 +116,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -129,7 +142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -140,21 +154,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -169,7 +189,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -183,7 +204,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -195,7 +217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -207,7 +230,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -218,22 +242,28 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -248,7 +278,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -262,7 +293,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -274,7 +306,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -286,7 +319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -297,25 +331,29 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -326,7 +364,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -338,7 +377,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -349,20 +389,25 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zsxo.json b/src/lib/runners/zsxo.json index f60570611..bfeeb512f 100644 --- a/src/lib/runners/zsxo.json +++ b/src/lib/runners/zsxo.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -56,11 +57,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -73,11 +76,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -90,24 +95,30 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 4 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zuus.json b/src/lib/runners/zuus.json index cae49c052..95e011c47 100644 --- a/src/lib/runners/zuus.json +++ b/src/lib/runners/zuus.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -25,9 +26,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -41,7 +44,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -52,17 +56,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -78,7 +86,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -89,9 +98,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -105,7 +116,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -116,17 +128,21 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -142,7 +158,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -153,9 +170,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -169,7 +188,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -180,18 +200,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -207,7 +231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -218,9 +243,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -234,7 +261,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -245,21 +273,23 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "i", "highlightType": "default", @@ -269,16 +299,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zwpj.json b/src/lib/runners/zwpj.json index 203bf204a..851c9f6d0 100644 --- a/src/lib/runners/zwpj.json +++ b/src/lib/runners/zwpj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -40,18 +40,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -61,16 +65,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/zwut.json b/src/lib/runners/zwut.json index 94e0722b0..55a10223b 100644 --- a/src/lib/runners/zwut.json +++ b/src/lib/runners/zwut.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +42,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -55,15 +56,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -77,7 +82,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -89,7 +95,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -101,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -116,7 +124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -127,9 +136,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -144,7 +155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -155,9 +167,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -172,7 +186,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -184,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -200,7 +216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -213,11 +230,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -230,15 +249,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -253,30 +276,41 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -292,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -304,7 +339,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -318,7 +354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -331,15 +368,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -353,7 +394,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -365,7 +407,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -377,7 +420,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -392,7 +436,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -403,9 +448,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -420,7 +467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -431,9 +479,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -448,7 +498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -460,7 +511,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -476,7 +528,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -489,11 +542,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -506,15 +561,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -529,33 +588,42 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -571,7 +639,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -583,7 +652,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -597,7 +667,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -610,15 +681,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -632,7 +707,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -644,7 +720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -656,7 +733,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -671,7 +749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -682,9 +761,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -699,7 +780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -710,9 +792,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -727,7 +811,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -739,7 +824,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -755,7 +841,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -768,11 +855,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -785,15 +874,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -808,34 +901,43 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -851,7 +953,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -863,7 +966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -877,7 +981,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -890,15 +995,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -912,7 +1021,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -924,7 +1034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -936,7 +1047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -951,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -962,9 +1075,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -979,7 +1094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -990,9 +1106,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1007,7 +1125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1019,7 +1138,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1035,7 +1155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1048,11 +1169,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1065,15 +1188,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1089,7 +1216,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1101,7 +1229,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1115,7 +1244,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1128,41 +1258,53 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -1178,7 +1320,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1190,7 +1333,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1204,7 +1348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1217,15 +1362,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1239,7 +1388,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1251,7 +1401,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1263,7 +1414,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1278,7 +1430,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1289,9 +1442,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1306,7 +1461,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1317,9 +1473,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1334,7 +1492,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1346,7 +1505,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1362,7 +1522,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1375,11 +1536,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1392,15 +1555,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1416,7 +1583,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1428,7 +1596,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1442,7 +1611,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1455,45 +1625,55 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1504,7 +1684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1516,7 +1697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1531,7 +1713,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1542,9 +1725,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1559,7 +1744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1570,9 +1756,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1587,7 +1775,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1599,7 +1788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1615,7 +1805,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1628,11 +1819,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1645,15 +1838,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1669,7 +1866,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1681,7 +1879,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1695,7 +1894,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1708,36 +1908,47 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1748,7 +1959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1760,7 +1972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1775,7 +1988,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1786,9 +2000,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1803,7 +2019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1814,9 +2031,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1831,7 +2050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1843,7 +2063,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1859,7 +2080,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1872,11 +2094,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1889,15 +2113,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -1913,7 +2141,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1925,7 +2154,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1939,7 +2169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1952,37 +2183,47 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1993,7 +2234,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2005,7 +2247,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2020,7 +2263,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2031,9 +2275,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2048,7 +2294,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2059,9 +2306,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2076,7 +2325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2088,7 +2338,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2104,7 +2355,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2117,11 +2369,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2134,15 +2388,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2158,7 +2416,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2170,7 +2429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2184,7 +2444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2197,38 +2458,48 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2239,7 +2510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2251,7 +2523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2266,7 +2539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2277,9 +2551,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2294,7 +2570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2305,9 +2582,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2322,7 +2601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2334,7 +2614,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2350,7 +2631,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2363,11 +2645,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2380,15 +2664,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2404,7 +2692,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2416,7 +2705,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2430,7 +2720,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2444,7 +2735,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2456,7 +2748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2472,7 +2765,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2485,11 +2779,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2502,45 +2798,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2551,7 +2860,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2563,7 +2873,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2578,7 +2889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2589,9 +2901,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2606,7 +2920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2617,9 +2932,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2634,7 +2951,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2646,7 +2964,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2662,7 +2981,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2675,11 +2995,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2692,15 +3014,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -2716,7 +3042,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2728,7 +3055,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2742,7 +3070,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2756,7 +3085,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2768,7 +3098,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2784,7 +3115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2797,11 +3129,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2814,45 +3148,58 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2863,7 +3210,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2875,7 +3223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2890,7 +3239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2901,9 +3251,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2918,7 +3270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2929,9 +3282,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2946,7 +3301,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2960,7 +3316,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2974,7 +3331,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2986,7 +3344,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3002,7 +3361,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3015,11 +3375,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3032,38 +3394,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 5 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -3074,7 +3448,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3086,7 +3461,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3101,7 +3477,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3112,9 +3489,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3129,7 +3508,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3140,9 +3520,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3157,7 +3539,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3171,7 +3554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3185,7 +3569,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3197,7 +3582,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3213,7 +3599,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3226,11 +3613,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3243,39 +3632,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -3286,7 +3686,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3298,7 +3699,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3313,7 +3715,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3324,9 +3727,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3341,7 +3746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3352,9 +3758,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3369,7 +3777,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3383,7 +3792,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3397,7 +3807,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3409,7 +3820,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3425,7 +3837,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3438,11 +3851,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3455,40 +3870,51 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -3499,7 +3925,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3511,7 +3938,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3526,7 +3954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3537,9 +3966,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3554,7 +3985,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3565,9 +3997,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3582,7 +4016,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3597,7 +4032,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3608,9 +4044,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3624,7 +4062,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3636,7 +4075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3652,7 +4092,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3665,11 +4106,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3682,39 +4125,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -3725,7 +4179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3737,7 +4192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3752,7 +4208,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3763,9 +4220,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3780,7 +4239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3791,9 +4251,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3808,7 +4270,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3823,7 +4286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3834,9 +4298,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3850,7 +4316,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3862,7 +4329,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3878,7 +4346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3891,11 +4360,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3908,39 +4379,50 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -3951,7 +4433,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3963,7 +4446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3978,7 +4462,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3989,9 +4474,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4006,7 +4493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4017,9 +4505,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4034,7 +4524,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4046,7 +4537,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4062,7 +4554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4075,11 +4568,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4092,32 +4587,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -4128,7 +4633,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4140,7 +4646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4155,7 +4662,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4166,9 +4674,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4183,7 +4693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4194,9 +4705,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4211,7 +4724,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4223,7 +4737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4239,7 +4754,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4252,11 +4768,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4269,33 +4787,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -4306,7 +4833,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4318,7 +4846,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4333,7 +4862,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4344,9 +4874,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4361,7 +4893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4372,9 +4905,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4389,7 +4924,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4401,7 +4937,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4417,7 +4954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4430,11 +4968,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4447,34 +4987,43 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -4485,7 +5034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4497,7 +5047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4512,7 +5063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4523,9 +5075,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4540,7 +5094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4551,9 +5106,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4568,7 +5125,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4580,7 +5138,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4596,7 +5155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4610,7 +5170,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4621,13 +5182,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -4640,33 +5204,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -4677,7 +5250,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4689,7 +5263,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4704,7 +5279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4715,9 +5291,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4732,7 +5310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4743,9 +5322,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4760,7 +5341,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4772,7 +5354,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4788,7 +5371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4802,7 +5386,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4813,13 +5398,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -4832,33 +5420,42 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -4869,7 +5466,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4881,7 +5479,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4896,7 +5495,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4907,9 +5507,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4923,7 +5525,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4939,7 +5542,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4953,7 +5557,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4964,13 +5569,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -4983,26 +5591,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 4 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -5013,7 +5629,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5025,7 +5642,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5040,7 +5658,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5051,9 +5670,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5067,7 +5688,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5083,7 +5705,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5097,7 +5720,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5108,13 +5732,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -5127,27 +5754,34 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "b", @@ -5158,7 +5792,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5170,7 +5805,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5185,7 +5821,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5196,9 +5833,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5212,7 +5851,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5228,7 +5868,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5242,7 +5883,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5253,13 +5895,16 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 1 }, "func": { "name": "e", @@ -5272,31 +5917,38 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 } ], "speed": 1.25, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zwvj.json b/src/lib/runners/zwvj.json index 2b7d8fd40..12e26491e 100644 --- a/src/lib/runners/zwvj.json +++ b/src/lib/runners/zwvj.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -57,11 +58,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -74,15 +77,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -96,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -135,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -146,9 +157,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -163,7 +176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -174,9 +188,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -191,7 +207,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -203,7 +220,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -219,7 +237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -232,11 +251,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -249,15 +270,19 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "name": "a", @@ -272,38 +297,47 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 5 + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zxkq.json b/src/lib/runners/zxkq.json index 38d6e7ee5..9a2fc9dd4 100644 --- a/src/lib/runners/zxkq.json +++ b/src/lib/runners/zxkq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -45,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -58,11 +59,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -75,11 +78,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -92,11 +97,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -109,24 +116,29 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zzhq.json b/src/lib/runners/zzhq.json index 7d834056b..89a661bee 100644 --- a/src/lib/runners/zzhq.json +++ b/src/lib/runners/zzhq.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -13,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -36,20 +36,24 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" - } + "type": "function", + "maxNestedFunctionDepth": 2 + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zzxj.json b/src/lib/runners/zzxj.json index 72aacd8aa..d0e6a8bb2 100644 --- a/src/lib/runners/zzxj.json +++ b/src/lib/runners/zzxj.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,25 +40,27 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zzyu.json b/src/lib/runners/zzyu.json index cd1e96ecc..ffa5967eb 100644 --- a/src/lib/runners/zzyu.json +++ b/src/lib/runners/zzyu.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "l", @@ -15,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -40,18 +40,22 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "state": "default", "type": "call", - "priority": 1 - } + "priority": 1, + "maxNestedFunctionDepth": 1 + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "l", "highlightType": "default", @@ -61,16 +65,19 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - } + "bound": true, + "maxNestedFunctionDepth": 0 + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/theme/maxWidths.ts b/src/lib/theme/maxWidths.ts index 94814020f..ef05aaf81 100644 --- a/src/lib/theme/maxWidths.ts +++ b/src/lib/theme/maxWidths.ts @@ -1,6 +1,7 @@ export const allMaxWidths = { xxxs: (1140 / 12) * 2, xxs: (1140 / 12) * 4, + xsxs: (1140 / 12) * 5, xs: (1140 / 12) * 6, smsm: (1140 / 12) * 8, sm: (1140 / 12) * 9, diff --git a/src/lib/theme/zIndices.ts b/src/lib/theme/zIndices.ts index b9057d291..7e1f030fe 100644 --- a/src/lib/theme/zIndices.ts +++ b/src/lib/theme/zIndices.ts @@ -1,6 +1,7 @@ export const allZIndices = { border: 100, conditionalBorder: 101, + multiplySign: 101, borderToplevel: 102, badge: 102, expressionPriorityNumber: 101, diff --git a/src/types/ExpressionContainerTypes.ts b/src/types/ExpressionContainerTypes.ts index 9c36afed1..d06aa0904 100644 --- a/src/types/ExpressionContainerTypes.ts +++ b/src/types/ExpressionContainerTypes.ts @@ -1,7 +1,8 @@ import { CallStates, ConditionalStates, - Expression + Expression, + BinaryStates } from 'src/types/ExpressionTypes' export type ExpressionContainerStates = @@ -14,9 +15,13 @@ export type ExpressionContainerStates = export interface ExpressionContainer { readonly expression: E readonly containerState: ExpressionContainerStates - readonly previouslyChangedExpressionState: CallStates | ConditionalStates + readonly previouslyChangedExpressionState: + | CallStates + | ConditionalStates + | BinaryStates readonly matchExists?: boolean readonly activePriority?: number + readonly numLeafNodes: number } export type ContainerWithState< diff --git a/src/types/ExpressionParamTypes.ts b/src/types/ExpressionParamTypes.ts index 0d17a5721..f9b893357 100644 --- a/src/types/ExpressionParamTypes.ts +++ b/src/types/ExpressionParamTypes.ts @@ -3,6 +3,7 @@ import { VariableShorthandNumber, VariableShorthandFunc, ConditionalExpression, + BinaryExpression, FunctionExpression } from 'src/types/ExpressionTypes' @@ -52,6 +53,12 @@ export interface ConditionalExpressionParams { readonly checkType: ConditionalExpression['checkType'] } +export interface BinaryExpressionParams { + readonly first: ExpressionParams + readonly second: ExpressionParams + readonly binaryType: BinaryExpression['binaryType'] +} + export interface RepeatExpressionParams { readonly child: ExpressionParams readonly count?: number @@ -69,3 +76,4 @@ export type ExpressionParams = | VariableShorthandFuncParams | QuestionPlusOrMinusOneParams | QuestionShorthandNumberAfterConvertParams + | BinaryExpressionParams diff --git a/src/types/ExpressionRunnerTypes.ts b/src/types/ExpressionRunnerTypes.ts index dfffe8668..f2bc354bb 100644 --- a/src/types/ExpressionRunnerTypes.ts +++ b/src/types/ExpressionRunnerTypes.ts @@ -4,12 +4,11 @@ import { } from 'src/types/ExpressionContainerTypes' import { VariableExpression } from 'src/types/ExpressionTypes' import { VariableNames } from 'src/types/VariableNames' -import { allMaxWidths } from 'src/lib/theme/maxWidths' +import { VariableSizes } from 'src/types/VariableSizes' export interface ExpressionRunnerContextProps { hidePriorities: boolean hideBottomRightBadges: boolean - variableSize: 'sm' | 'md' | 'lg' | 'xs' | 'xxs' | 'xxxs' isDoneOrReady: boolean bottomRightBadgeOverrides: { [key in VariableNames]?: string } highlightOverrides: { @@ -20,6 +19,7 @@ export interface ExpressionRunnerContextProps { highlightOverridesCallArgAndFuncUnboundOnly: boolean highlightFunctions: boolean highlightAllChildren: boolean + variableSize: VariableSizes } export type InitializeInstruction = @@ -40,11 +40,9 @@ export interface ExpressionRunnerProps { hideBottomRightBadges: ExpressionRunnerContextProps['hideBottomRightBadges'] hideControls: boolean explanationsVisibility: 'visible' | 'hidden' | 'hiddenInitialPausedOnly' - variableSize: ExpressionRunnerContextProps['variableSize'] initializeInstructions: readonly InitializeInstruction[] lastAllowedExpressionState?: ExpressionContainer['previouslyChangedExpressionState'] lastAllowedExpressionStateAfterIterations?: number - containerSize: keyof typeof allMaxWidths hidePlayButton?: boolean speed: number showAllShowSteps?: boolean @@ -62,7 +60,6 @@ export interface ExpressionRunnerProps { export const expressionRunnerContextDefault: ExpressionRunnerContextProps = { hidePriorities: false, hideBottomRightBadges: false, - variableSize: 'sm', isDoneOrReady: false, started: false, bottomRightBadgeOverrides: {}, @@ -70,5 +67,6 @@ export const expressionRunnerContextDefault: ExpressionRunnerContextProps = { highlightOverrideActiveAfterStart: false, highlightOverridesCallArgAndFuncUnboundOnly: false, highlightFunctions: false, - highlightAllChildren: false + highlightAllChildren: false, + variableSize: 'lg' } diff --git a/src/types/ExpressionTypes.ts b/src/types/ExpressionTypes.ts index 3e7b82438..d29f32da3 100644 --- a/src/types/ExpressionTypes.ts +++ b/src/types/ExpressionTypes.ts @@ -21,6 +21,7 @@ export interface VariableExpression { | 'binaryFirst' | 'binarySecond' readonly shorthandNumberPlusOrMinusOne?: 'plus' | 'minus' + readonly maxNestedFunctionDepth?: number } export interface VariableShorthandNumber extends VariableExpression { @@ -204,6 +205,8 @@ export type ConditionalStates = | 'trueCaseActive' | 'falseCaseActive' +export type BinaryStates = 'default' | 'active' + // Call state to possible variable state export type CallStateToVariableState = C extends 'default' ? 'default' @@ -275,6 +278,7 @@ export interface CallExpression { readonly arg: Expression readonly func: Expression readonly priority: number + readonly maxNestedFunctionDepth?: number } export interface FunctionExpression { @@ -282,6 +286,7 @@ export interface FunctionExpression { readonly arg: VariableExpression readonly body: Expression readonly meta?: 'focused' | 'plusOneEffect' | 'minusOneEffect' + readonly maxNestedFunctionDepth?: number } export interface ConditionalExpression { @@ -292,6 +297,17 @@ export interface ConditionalExpression { readonly falseCase: Expression readonly priority: number readonly state: ConditionalStates + readonly maxNestedFunctionDepth?: number +} + +export interface BinaryExpression { + readonly type: 'binary' + readonly binaryType: 'multiply' + readonly first: Expression + readonly second: Expression + readonly priority: number + readonly state: BinaryStates + readonly maxNestedFunctionDepth?: number } export interface RepeatExpression { @@ -299,6 +315,7 @@ export interface RepeatExpression { readonly child: Expression readonly count?: number readonly countVariable?: VariableNames + readonly maxNestedFunctionDepth?: number } export type Expression = @@ -307,6 +324,7 @@ export type Expression = | FunctionExpression | ConditionalExpression | RepeatExpression + | BinaryExpression type FunctionWithArgBody< A extends VariableExpression, @@ -327,6 +345,15 @@ type NonExecutableConditional< readonly falseCase: F } +type NonExecutableBinary< + A extends Expression, + B extends Expression +> = BinaryExpression & { + readonly state: 'default' + readonly first: A + readonly second: B +} + type NonExecutable = CallExpression & { readonly arg: E readonly state: 'default' @@ -368,6 +395,17 @@ type ExecutableConditionalNumber< readonly state: S }) +type ExecutableBinaryNumber< + A extends VariableShorthandNumber, + B extends VariableShorthandNumber, + S extends BinaryStates +> = BinaryExpression & + ({ + readonly first: A + readonly second: B + readonly state: S + }) + export type StepVariable = VariableWithState< CallStateToVariableState > @@ -379,6 +417,8 @@ export type StepVariableShorthandFunc< > = VariableWithStateShorthandFunc> export interface StepConditional extends NonExecutableConditional, StepChild, StepChild> {} +export interface StepBinary + extends NonExecutableBinary, StepChild> {} export interface StepFunction extends FunctionWithArgBody, StepChild> {} @@ -402,12 +442,22 @@ export interface ExecutableStepConditional< StepChild, S > {} +export interface ExecutableStepBinary< + C extends CallStates = 'default', + S extends BinaryStates = 'default' +> + extends ExecutableBinaryNumber< + VariableWithStateShorthandNumber>, + VariableWithStateShorthandNumber>, + S + > {} export type StepChild = | StepVariable | StepFunction | StepConditional | NonExecutableStepCall | RepeatExpression + | StepBinary // Map from a union type to another union type // https://stackoverflow.com/a/51691257/114157 @@ -439,3 +489,19 @@ type DistributeExecutableConditionalStates = S extends ConditionalStates export type ExecutableConditionalStatesDistributed = DistributeExecutableConditionalStates< ConditionalStates > + +type DistributeStepBinary = U extends CallStates + ? ExecutableStepBinary + : never + +export type ExecutableBinary< + S extends BinaryStates = 'default' +> = DistributeStepBinary + +type DistributeExecutableBinaryStates = S extends BinaryStates + ? ExecutableBinary + : never + +export type ExecutableBinaryStatesDistributed = DistributeExecutableBinaryStates< + BinaryStates +> diff --git a/src/types/VariableNames.ts b/src/types/VariableNames.ts index 3550db9f6..e2ee01db7 100644 --- a/src/types/VariableNames.ts +++ b/src/types/VariableNames.ts @@ -46,7 +46,6 @@ export type VariableNames = | 'blankNumberGreen' | 'bentoBox' | 'mathBox' - | 'mult' export interface VariableNamesWithAlphaConvertCount { name: VariableNames diff --git a/src/types/VariableSizes.ts b/src/types/VariableSizes.ts new file mode 100644 index 000000000..aa008baa2 --- /dev/null +++ b/src/types/VariableSizes.ts @@ -0,0 +1 @@ +export type VariableSizes = 'sm' | 'md' | 'lg' | 'xs' | 'xxs' | 'xxxs'